diff options
author | Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> | 2017-06-13 20:20:43 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2017-07-01 12:16:59 +0300 |
commit | e049ca5fa7affd08a17a5f2f60d97524c92850c1 (patch) | |
tree | 4ae76d192e1801de42fd7f764f5483d8951f0d17 | |
parent | c43aaa2772732a24a642afc26c030a2bee35aa0c (diff) | |
download | linux-e049ca5fa7affd08a17a5f2f60d97524c92850c1.tar.xz |
dt-bindings: iio: humidity: Add bindings for HTU21 and MS8607 sensors
Add device tree bindings for Measurement-Specialties HTU21 temperature & humidity sensor and humidity part of MS8607 sensor
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/iio/humidity/htu21.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/humidity/htu21.txt b/Documentation/devicetree/bindings/iio/humidity/htu21.txt new file mode 100644 index 000000000000..97d79636f7ae --- /dev/null +++ b/Documentation/devicetree/bindings/iio/humidity/htu21.txt @@ -0,0 +1,13 @@ +*HTU21 - Measurement-Specialties htu21 temperature & humidity sensor and humidity part of MS8607 sensor + +Required properties: + + - compatible: should be "meas,htu21" or "meas,ms8607-humidity" + - reg: I2C address of the sensor + +Example: + +htu21@40 { + compatible = "meas,htu21"; + reg = <0x40>; +}; |