mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +03:00
Fix the errors generated when running the dt_binding_check on the DT binding document yaml format. Change-Id: Ie000447c97e92532755a484be02c5b347216d774 Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2702785 GVS: Gerrit_Virtual_Submit
45 lines
825 B
YAML
45 lines
825 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/thermal/pex9749-thermal.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: PEX9749 Thermal Sensor
|
|
|
|
maintainers:
|
|
- Laxman Dewangan <ldewangan@nvidia.com>
|
|
|
|
description: |
|
|
PEX9749 thermal sensor monitors the temperature.
|
|
|
|
properties:
|
|
compatible:
|
|
const: "pex9749"
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
"#thermal-sensor-cells":
|
|
const: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- "#thermal-sensor-cells"
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
i2c@3180000 {
|
|
reg = <0x3180000 0x0>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
pex9749: pex9749@5f {
|
|
compatible = "pex9749";
|
|
reg = <0x5f>;
|
|
#thermal-sensor-cells = <1>;
|
|
};
|
|
};
|
|
...
|