diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-09-01 04:46:15 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-09-14 03:12:03 -0400 |
commit | ae80d64ee8c88b77c58254bcdc5c0981faab672d (patch) | |
tree | c0675357651d7f30f6983aa827f5701b842bc631 /Documentation | |
parent | 5e606abef57a89b3ca25f5d97a953c6cdad7cbac (diff) |
Documentation: gpio: Explain that <function>-gpio is also supported
The GPIO documentation mentions that GPIOs are mapped by defining a
<function>-gpios property in the consumer device's node but a -gpio
sufix is also supported after commit:
dd34c37aa3e8 ("gpio: of: Allow -gpio suffix for property names")
Update the documentation to match the implementation.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/gpio/board.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/gpio/board.txt b/Documentation/gpio/board.txt index 5fa069a80171..f59c43b6411b 100644 --- a/Documentation/gpio/board.txt +++ b/Documentation/gpio/board.txt | |||
@@ -21,8 +21,8 @@ exact way to do it depends on the GPIO controller providing the GPIOs, see the | |||
21 | device tree bindings for your controller. | 21 | device tree bindings for your controller. |
22 | 22 | ||
23 | GPIOs mappings are defined in the consumer device's node, in a property named | 23 | GPIOs mappings are defined in the consumer device's node, in a property named |
24 | <function>-gpios, where <function> is the function the driver will request | 24 | either <function>-gpios or <function>-gpio, where <function> is the function |
25 | through gpiod_get(). For example: | 25 | the driver will request through gpiod_get(). For example: |
26 | 26 | ||
27 | foo_device { | 27 | foo_device { |
28 | compatible = "acme,foo"; | 28 | compatible = "acme,foo"; |
@@ -31,7 +31,7 @@ through gpiod_get(). For example: | |||
31 | <&gpio 16 GPIO_ACTIVE_HIGH>, /* green */ | 31 | <&gpio 16 GPIO_ACTIVE_HIGH>, /* green */ |
32 | <&gpio 17 GPIO_ACTIVE_HIGH>; /* blue */ | 32 | <&gpio 17 GPIO_ACTIVE_HIGH>; /* blue */ |
33 | 33 | ||
34 | power-gpios = <&gpio 1 GPIO_ACTIVE_LOW>; | 34 | power-gpio = <&gpio 1 GPIO_ACTIVE_LOW>; |
35 | }; | 35 | }; |
36 | 36 | ||
37 | This property will make GPIOs 15, 16 and 17 available to the driver under the | 37 | This property will make GPIOs 15, 16 and 17 available to the driver under the |