diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2013-03-28 08:07:46 -0400 |
---|---|---|
committer | Alexandre Courbot <acourbot@nvidia.com> | 2013-04-16 05:47:19 -0400 |
commit | 7fd2bf3d325478e6715cce3ede7de641ff596183 (patch) | |
tree | 633484cf096ac914ed518f9d956bce767a568cab /Documentation | |
parent | 76ec9d18b8972f1b228f819f6126c9f022b3e642 (diff) |
Remove GENERIC_GPIO config option
GENERIC_GPIO has been made equivalent to GPIOLIB in architecture code
and all driver code has been switch to depend on GPIOLIB. It is thus
safe to have GENERIC_GPIO removed.
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/gpio.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/gpio.txt b/Documentation/gpio.txt index 77a1d11af723..6f83fa965b4b 100644 --- a/Documentation/gpio.txt +++ b/Documentation/gpio.txt | |||
@@ -72,11 +72,11 @@ in this document, but drivers acting as clients to the GPIO interface must | |||
72 | not care how it's implemented.) | 72 | not care how it's implemented.) |
73 | 73 | ||
74 | That said, if the convention is supported on their platform, drivers should | 74 | That said, if the convention is supported on their platform, drivers should |
75 | use it when possible. Platforms must declare GENERIC_GPIO support in their | 75 | use it when possible. Platforms must select ARCH_REQUIRE_GPIOLIB or |
76 | Kconfig (boolean true), and provide an <asm/gpio.h> file. Drivers that can't | 76 | ARCH_WANT_OPTIONAL_GPIOLIB in their Kconfig. Drivers that can't work without |
77 | work without standard GPIO calls should have Kconfig entries which depend | 77 | standard GPIO calls should have Kconfig entries which depend on GPIOLIB. The |
78 | on GENERIC_GPIO. The GPIO calls are available, either as "real code" or as | 78 | GPIO calls are available, either as "real code" or as optimized-away stubs, |
79 | optimized-away stubs, when drivers use the include file: | 79 | when drivers use the include file: |
80 | 80 | ||
81 | #include <linux/gpio.h> | 81 | #include <linux/gpio.h> |
82 | 82 | ||