diff options
author | Mirko Vogt <mirko@openwrt.org> | 2009-08-22 12:46:12 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2009-08-22 12:46:12 +0000 |
commit | 6e2a58ac3bdec3315fd9934cf46746143243594f (patch) | |
tree | 2e86c133fcec02de817a54513c897f0580600950 /target/linux/generic-2.6/patches-2.6.31/420-gpiodev.patch | |
parent | 75ee3370d9bedff6be7a12431ceef5606252e90a (diff) | |
download | upstream-6e2a58ac3bdec3315fd9934cf46746143243594f.tar.gz upstream-6e2a58ac3bdec3315fd9934cf46746143243594f.tar.bz2 upstream-6e2a58ac3bdec3315fd9934cf46746143243594f.zip |
add generic patchset levelled up to 2.6.31-rc6
SVN-Revision: 17351
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.31/420-gpiodev.patch')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.31/420-gpiodev.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.31/420-gpiodev.patch b/target/linux/generic-2.6/patches-2.6.31/420-gpiodev.patch new file mode 100644 index 0000000000..5a364d69ad --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.31/420-gpiodev.patch @@ -0,0 +1,27 @@ +--- a/drivers/char/Kconfig ++++ b/drivers/char/Kconfig +@@ -1029,6 +1029,14 @@ config CS5535_GPIO + + If compiled as a module, it will be called cs5535_gpio. + ++config GPIO_DEVICE ++ tristate "GPIO device support" ++ depends on GENERIC_GPIO ++ help ++ Say Y to enable Linux GPIO device support. This allows control of ++ GPIO pins using a character device ++ ++ + config RAW_DRIVER + tristate "RAW driver (/dev/raw/rawN)" + depends on BLOCK +--- a/drivers/char/Makefile ++++ b/drivers/char/Makefile +@@ -95,6 +95,7 @@ obj-$(CONFIG_SCx200_GPIO) += scx200_gpio + obj-$(CONFIG_PC8736x_GPIO) += pc8736x_gpio.o + obj-$(CONFIG_NSC_GPIO) += nsc_gpio.o + obj-$(CONFIG_CS5535_GPIO) += cs5535_gpio.o ++obj-$(CONFIG_GPIO_DEVICE) += gpio_dev.o + obj-$(CONFIG_GPIO_TB0219) += tb0219.o + obj-$(CONFIG_TELCLOCK) += tlclk.o + |