Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

gpio: pxa: fix Documentation of interrupt-names property

The property name to pass names for interrupt resources is called
"interrupt-names", not "interrupt-name". Fix it to avoid further
confusion.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

Daniel Mack and committed by
Linus Walleij
ee56884e 5dbb7c63

+4 -3
+4 -3
Documentation/devicetree/bindings/gpio/mrvl-gpio.txt
··· 10 10 There're three gpio interrupts in arch-pxa, and they're gpio0, 11 11 gpio1 and gpio_mux. There're only one gpio interrupt in arch-mmp, 12 12 gpio_mux. 13 - - interrupt-name : Should be the name of irq resource. Each interrupt 14 - binds its interrupt-name. 13 + - interrupt-names : Should be the names of irq resources. Each interrupt 14 + uses its own interrupt name, so there should be as many interrupt names 15 + as referenced interrups. 15 16 - interrupt-controller : Identifies the node as an interrupt controller. 16 17 - #interrupt-cells: Specifies the number of cells needed to encode an 17 18 interrupt source. ··· 25 24 compatible = "marvell,mmp-gpio"; 26 25 reg = <0xd4019000 0x1000>; 27 26 interrupts = <49>; 28 - interrupt-name = "gpio_mux"; 27 + interrupt-names = "gpio_mux"; 29 28 gpio-controller; 30 29 #gpio-cells = <1>; 31 30 interrupt-controller;