diff options
author | Angelo Compagnucci <angelo.compagnucci@gmail.com> | 2015-03-08 09:37:23 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-03-09 07:04:26 -0400 |
commit | 4a428bf3d92385f27cbb15bef90754027ba4f2d9 (patch) | |
tree | 956df79cc8369b61d15ebde0a634d68207c31c39 | |
parent | d24fc643b5cfb4fdb0d1bd569e1a2e128c0bf311 (diff) |
iio: mcp3422: Add DT binding documentation
Adding binding documentation for ADC MCP3422.
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/iio/adc/mcp3422.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/adc/mcp3422.txt b/Documentation/devicetree/bindings/iio/adc/mcp3422.txt new file mode 100644 index 000000000000..333139cc0bfb --- /dev/null +++ b/Documentation/devicetree/bindings/iio/adc/mcp3422.txt | |||
@@ -0,0 +1,17 @@ | |||
1 | * Microchip mcp3422/3/4/6/7/8 chip family (ADC) | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: Should be | ||
5 | "microchip,mcp3422" or | ||
6 | "microchip,mcp3423" or | ||
7 | "microchip,mcp3424" or | ||
8 | "microchip,mcp3426" or | ||
9 | "microchip,mcp3427" or | ||
10 | "microchip,mcp3428" | ||
11 | - reg: I2C address for the device | ||
12 | |||
13 | Example: | ||
14 | adc@0 { | ||
15 | compatible = "microchip,mcp3424"; | ||
16 | reg = <0x68>; | ||
17 | }; | ||