diff options
author | Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> | 2017-06-13 17:53:13 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2017-07-01 11:16:44 +0200 |
commit | 7b34697e96b6b474c2a9a83d7cb48fa99c956692 (patch) | |
tree | 18487877f1a3604ea6bcfa4482b91e690d0d7f5a /Documentation/devicetree | |
parent | iio: temperature: tsys01: Add OF match table (diff) | |
download | linux-7b34697e96b6b474c2a9a83d7cb48fa99c956692.tar.xz linux-7b34697e96b6b474c2a9a83d7cb48fa99c956692.zip |
dt-bindings: iio: temperature: Add bindings for TSYS01 temperature sensor
Add device tree bindings for Measurement Specialties TSYS01 temperature sensor
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/iio/temperature/tsys01.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/temperature/tsys01.txt b/Documentation/devicetree/bindings/iio/temperature/tsys01.txt new file mode 100644 index 000000000000..0d5cc5595d0c --- /dev/null +++ b/Documentation/devicetree/bindings/iio/temperature/tsys01.txt @@ -0,0 +1,19 @@ +* TSYS01 - Measurement Specialties temperature sensor + +Required properties: + + - compatible: should be "meas,tsys01" + - reg: I2C address of the sensor (changeable via CSB pin) + + ------------------------ + | CSB | Device Address | + ------------------------ + 1 0x76 + 0 0x77 + +Example: + +tsys01@76 { + compatible = "meas,tsys01"; + reg = <0x76>; +}; |