Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / hwmon / st,stts751.yaml
blob9c825adbed58ffa04b1b314b5984eb3109f2f9d5
1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/hwmon/st,stts751.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: STTS751 Thermometer
9 maintainers:
10   - Javier Carrasco <javier.carrasco.cruz@gmail.com>
12 properties:
13   compatible:
14     const: st,stts751
16   reg:
17     maxItems: 1
19   smbus-timeout-disable:
20     description:
21       When set, the smbus timeout function will be disabled.
22     $ref: /schemas/types.yaml#/definitions/flag
24 required:
25   - compatible
26   - reg
28 additionalProperties: false
30 examples:
31   - |
32     i2c {
33         #address-cells = <1>;
34         #size-cells = <0>;
36         thermometer@48 {
37             compatible = "st,stts751";
38             reg = <0x48>;
39             smbus-timeout-disable;
40         };
41     };