Merge tag 'sched-urgent-2024-03-24' of git://git.kernel.org/pub/scm/linux/kernel...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / iio / light / vishay,veml6075.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/iio/light/vishay,veml6075.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Vishay VEML6075 UVA and UVB sensor
8
9 maintainers:
10   - Javier Carrasco <javier.carrasco.cruz@gmail.com>
11
12 properties:
13   compatible:
14     const: vishay,veml6075
15
16   reg:
17     maxItems: 1
18
19   vdd-supply: true
20
21 required:
22   - compatible
23   - reg
24   - vdd-supply
25
26 additionalProperties: false
27
28 examples:
29   - |
30     i2c {
31         #address-cells = <1>;
32         #size-cells = <0>;
33
34         uv-sensor@10 {
35             compatible = "vishay,veml6075";
36             reg = <0x10>;
37             vdd-supply = <&vdd_reg>;
38         };
39     };
40 ...