mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 06:42:31 +00:00
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>
This commit is contained in:
parent
5dbb7c637f
commit
ee56884e77
@ -10,8 +10,9 @@ Required properties:
|
|||||||
There're three gpio interrupts in arch-pxa, and they're gpio0,
|
There're three gpio interrupts in arch-pxa, and they're gpio0,
|
||||||
gpio1 and gpio_mux. There're only one gpio interrupt in arch-mmp,
|
gpio1 and gpio_mux. There're only one gpio interrupt in arch-mmp,
|
||||||
gpio_mux.
|
gpio_mux.
|
||||||
- interrupt-name : Should be the name of irq resource. Each interrupt
|
- interrupt-names : Should be the names of irq resources. Each interrupt
|
||||||
binds its interrupt-name.
|
uses its own interrupt name, so there should be as many interrupt names
|
||||||
|
as referenced interrups.
|
||||||
- interrupt-controller : Identifies the node as an interrupt controller.
|
- interrupt-controller : Identifies the node as an interrupt controller.
|
||||||
- #interrupt-cells: Specifies the number of cells needed to encode an
|
- #interrupt-cells: Specifies the number of cells needed to encode an
|
||||||
interrupt source.
|
interrupt source.
|
||||||
@ -24,7 +25,7 @@ Example:
|
|||||||
compatible = "marvell,mmp-gpio";
|
compatible = "marvell,mmp-gpio";
|
||||||
reg = <0xd4019000 0x1000>;
|
reg = <0xd4019000 0x1000>;
|
||||||
interrupts = <49>;
|
interrupts = <49>;
|
||||||
interrupt-name = "gpio_mux";
|
interrupt-names = "gpio_mux";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <1>;
|
#gpio-cells = <1>;
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
|
Loading…
Reference in New Issue
Block a user