brintos

brintos / linux-shallow public Read only

0
0
Text · 838 B · 14ac783 Raw
44 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/hwmon/sensirion,sht15.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Sensirion SHT15 humidity and temperature sensor8 9maintainers:10  - Krzysztof Kozlowski <krzk@kernel.org>11 12properties:13  compatible:14    const: sensirion,sht1515 16  clk-gpios:17    maxItems: 118 19  data-gpios:20    maxItems: 121 22  vcc-supply:23    description: regulator that drives the VCC pin24 25required:26  - compatible27  - clk-gpios28  - data-gpios29  - vcc-supply30 31additionalProperties: false32 33examples:34  - |35    sensor {36        compatible = "sensirion,sht15";37        clk-gpios = <&gpio4 12 0>;38        data-gpios = <&gpio4 13 0>;39        vcc-supply = <&reg_sht15>;40 41        pinctrl-names = "default";42        pinctrl-0 = <&pinctrl_sensor>;43    };44