Revert "dm crypt: export sysfs of kcryptd workqueue"
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / iio / proximity / sx9500.txt
1 Semtech's SX9500 capacitive proximity button device driver
2
3 Required properties:
4         - compatible: must be "semtech,sx9500"
5         - reg: i2c address where to find the device
6         - interrupts : the sole interrupt generated by the device
7
8         Refer to interrupt-controller/interrupts.txt for generic
9         interrupt client node bindings.
10
11 Optional properties:
12         - reset-gpios: Reference to the GPIO connected to the device's active
13           low reset pin.
14
15 Example:
16
17 sx9500@28 {
18         compatible = "semtech,sx9500";
19         reg = <0x28>;
20         interrupt-parent = <&gpio2>;
21         interrupts = <16 IRQ_TYPE_LEVEL_LOW>;
22         reset-gpios = <&gpio2 10 GPIO_ACTIVE_LOW>;
23 };