// Copyright 2018 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include #include #include extern zx_status_t aml_thermal(void* ctx, zx_device_t* parent); static zx_driver_ops_t aml_thermal_driver_ops = { .version = DRIVER_OPS_VERSION, .bind = aml_thermal, }; // clang-format off ZIRCON_DRIVER_BEGIN(aml_thermal, aml_thermal_driver_ops, "aml-thermal", "0.1", 3) BI_ABORT_IF(NE, BIND_PLATFORM_DEV_VID, PDEV_VID_AMLOGIC), BI_ABORT_IF(NE, BIND_PLATFORM_DEV_PID, PDEV_PID_AMLOGIC_S905D2), BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_DID, PDEV_DID_AMLOGIC_THERMAL), ZIRCON_DRIVER_END(aml_thermal)