From: David Brownell <[EMAIL PROTECTED]> Add an empty drivers/gpio directory for gpiolib based GPIO expanders. We already have three of them (two I2C, one SPI), and there are dozens of similar chips that only exist for GPIO expansion.
This won't be the only place to hold such gpio_chip code. Many external chips add a few GPIOs as secondary functionality, and platform code frequently needs to closely integrate GPIO and IRQ support. This is placed *early* in the build/link sequence since it's common for other drivers to depend on GPIOs to do their work, so they need to be initialized early in the device_initcall() sequence. Signed-off-by: David Brownell <[EMAIL PROTECTED]> Acked-by: Jean Delvare <[EMAIL PROTECTED]> Cc: Eric Miao <[EMAIL PROTECTED]> --- arch/arm/Kconfig | 2 ++ drivers/Kconfig | 2 ++ drivers/Makefile | 1 + drivers/gpio/Kconfig | 14 ++++++++++++++ drivers/gpio/Makefile | 1 + 5 files changed, 20 insertions(+) --- a/arch/arm/Kconfig 2007-12-09 19:50:39.000000000 -0800 +++ b/arch/arm/Kconfig 2007-12-09 19:51:04.000000000 -0800 @@ -1034,6 +1034,8 @@ source "drivers/i2c/Kconfig" source "drivers/spi/Kconfig" +source "drivers/gpio/Kconfig" + source "drivers/w1/Kconfig" source "drivers/power/Kconfig" --- a/drivers/Kconfig 2007-12-09 19:50:39.000000000 -0800 +++ b/drivers/Kconfig 2007-12-09 19:51:04.000000000 -0800 @@ -52,6 +52,8 @@ source "drivers/i2c/Kconfig" source "drivers/spi/Kconfig" +source "drivers/gpio/Kconfig" + source "drivers/w1/Kconfig" source "drivers/power/Kconfig" --- a/drivers/Makefile 2007-12-09 19:50:39.000000000 -0800 +++ b/drivers/Makefile 2007-12-09 19:51:04.000000000 -0800 @@ -5,6 +5,7 @@ # Rewritten to use lists instead of if-statements. # +obj-$(CONFIG_GPIO_LIB) += gpio/ obj-$(CONFIG_PCI) += pci/ obj-$(CONFIG_PARISC) += parisc/ obj-$(CONFIG_RAPIDIO) += rapidio/ --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ b/drivers/gpio/Kconfig 2007-12-09 19:51:04.000000000 -0800 @@ -0,0 +1,14 @@ +# +# platform-neutral GPIO support +# + +menu "GPIO Expanders" + depends on GPIO_LIB + +# put expanders in the right section, in alphabetical order + +comment "I2C GPIO expanders:" + +comment "SPI GPIO expanders:" + +endmenu --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ b/drivers/gpio/Makefile 2007-12-09 19:51:04.000000000 -0800 @@ -0,0 +1 @@ +# gpio support: dedicated expander chips, etc -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

