treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / gpio / gpio-adnp.txt
bloba28902a65a622dd79569765b7667434a8e778a5a
1 Avionic Design N-bit GPIO expander bindings
3 Required properties:
4 - compatible: should be "ad,gpio-adnp"
5 - reg: The I2C slave address for this device.
6 - interrupts: Interrupt specifier for the controllers interrupt.
7 - #gpio-cells: Should be 2. The first cell is the GPIO number and the
8   second cell is used to specify optional parameters:
9   - bit 0: polarity (0: normal, 1: inverted)
10 - gpio-controller: Marks the device as a GPIO controller
11 - nr-gpios: The number of pins supported by the controller.
13 The GPIO expander can optionally be used as an interrupt controller, in
14 which case it uses the default two cell specifier as described in
15 Documentation/devicetree/bindings/interrupt-controller/interrupts.txt.
17 Example:
19         gpioext: gpio-controller@41 {
20                 compatible = "ad,gpio-adnp";
21                 reg = <0x41>;
23                 interrupt-parent = <&gpio>;
24                 interrupts = <160 1>;
26                 gpio-controller;
27                 #gpio-cells = <2>;
29                 interrupt-controller;
30                 #interrupt-cells = <2>;
32                 nr-gpios = <64>;
33         };