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/winbond,w83781d.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007 
0008 title: Winbond W83781 and compatible hardware monitor IC
0009 
0010 maintainers:
0011   - Linus Walleij <linus.walleij@linaro.org>
0012 
0013 properties:
0014   compatible:
0015     enum:
0016       - winbond,w83781d
0017       - winbond,w83781g
0018       - winbond,w83782d
0019       - winbond,w83783s
0020       - asus,as99127f
0021 
0022   reg:
0023     maxItems: 1
0024 
0025 required:
0026   - compatible
0027   - reg
0028 
0029 additionalProperties: false
0030 
0031 examples:
0032   - |
0033     i2c {
0034         #address-cells = <1>;
0035         #size-cells = <0>;
0036 
0037         temperature-sensor@28 {
0038             compatible = "winbond,w83781d";
0039             reg = <0x28>;
0040         };
0041     };