Files
linux-nv-oot/Documentation/devicetree/bindings/thermal/pex9749-thermal.yaml
Laxman Dewangan dc5237350d Documentation: Fix error from dt_binding_check
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
2022-04-26 07:48:11 -07:00

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>;
};
};
...