Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 
0005 $id: http://devicetree.org/schemas/hwmon/adi,ad741x.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007 
0008 title: Analog Devices AD7416/AD7417/AD7418 temperature sensors
0009 
0010 maintainers:
0011   - Krzysztof Kozlowski <krzk@kernel.org>
0012 
0013 properties:
0014   compatible:
0015     enum:
0016       - adi,ad7416
0017       - adi,ad7417
0018       - adi,ad7418
0019 
0020   reg:
0021     maxItems: 1
0022 
0023 required:
0024   - compatible
0025   - reg
0026 
0027 additionalProperties: false
0028 
0029 examples:
0030   - |
0031     i2c {
0032         #address-cells = <1>;
0033         #size-cells = <0>;
0034 
0035         temperature-sensor@28 {
0036             compatible = "adi,ad7418";
0037             reg = <0x28>;
0038         };
0039     };