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 7title: Vishay VEML6075 UVA and UVB sensor 8 9maintainers: 10 - Javier Carrasco <javier.carrasco.cruz@gmail.com> 11 12properties: 13 compatible: 14 const: vishay,veml6075 15 16 reg: 17 maxItems: 1 18 19 vdd-supply: true 20 21required: 22 - compatible 23 - reg 24 - vdd-supply 25 26additionalProperties: false 27 28examples: 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... 41