diff options
-rw-r--r-- | drivers/gpio/Kconfig | 8 | ||||
-rw-r--r-- | drivers/gpio/Makefile | 6 |
2 files changed, 5 insertions, 9 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index d2cd6cfb426d..44235bd4f9dd 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
@@ -1,5 +1,5 @@ | |||
1 | # | 1 | # |
2 | # platform-neutral GPIO infrastructure and expanders | 2 | # GPIO infrastructure and drivers |
3 | # | 3 | # |
4 | 4 | ||
5 | config ARCH_WANT_OPTIONAL_GPIOLIB | 5 | config ARCH_WANT_OPTIONAL_GPIOLIB |
@@ -31,7 +31,7 @@ menuconfig GPIOLIB | |||
31 | help | 31 | help |
32 | This enables GPIO support through the generic GPIO library. | 32 | This enables GPIO support through the generic GPIO library. |
33 | You only need to enable this, if you also want to enable | 33 | You only need to enable this, if you also want to enable |
34 | one or more of the GPIO expansion card drivers below. | 34 | one or more of the GPIO drivers below. |
35 | 35 | ||
36 | If unsure, say N. | 36 | If unsure, say N. |
37 | 37 | ||
@@ -63,12 +63,12 @@ config GPIO_SYSFS | |||
63 | Kernel drivers may also request that a particular GPIO be | 63 | Kernel drivers may also request that a particular GPIO be |
64 | exported to userspace; this can be useful when debugging. | 64 | exported to userspace; this can be useful when debugging. |
65 | 65 | ||
66 | # put expanders in the right section, in alphabetical order | 66 | # put drivers in the right section, in alphabetical order |
67 | 67 | ||
68 | config GPIO_MAX730X | 68 | config GPIO_MAX730X |
69 | tristate | 69 | tristate |
70 | 70 | ||
71 | comment "Memory mapped GPIO expanders:" | 71 | comment "Memory mapped GPIO drivers:" |
72 | 72 | ||
73 | config GPIO_BASIC_MMIO | 73 | config GPIO_BASIC_MMIO |
74 | tristate "Basic memory-mapped GPIO controllers support" | 74 | tristate "Basic memory-mapped GPIO controllers support" |
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index becef5954356..7b2bdceca080 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile | |||
@@ -1,8 +1,4 @@ | |||
1 | # generic gpio support: dedicated expander chips, etc | 1 | # generic gpio support: platform drivers, dedicated expander chips, etc |
2 | # | ||
3 | # NOTE: platform-specific GPIO drivers don't belong in the | ||
4 | # drivers/gpio directory; put them with other platform setup | ||
5 | # code, IRQ controllers, board init, etc. | ||
6 | 2 | ||
7 | ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG | 3 | ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG |
8 | 4 | ||