summaryrefslogtreecommitdiffstats
path: root/drivers/gpio/Makefile
diff options
context:
space:
mode:
authorAlexander Shiyan <shc_work@mail.ru>2013-03-11 13:26:36 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2013-03-11 22:17:42 +0100
commit100c016f3561d5f87fd27f8cb02d886ba3e72536 (patch)
tree8a329c33ae757a1e9c438762c68853a03f681bf0 /drivers/gpio/Makefile
parentb41afe3c22f1dc4f71470bbc25d492c0401f2284 (diff)
downloadbarebox-100c016f3561d5f87fd27f8cb02d886ba3e72536.tar.gz
barebox-100c016f3561d5f87fd27f8cb02d886ba3e72536.tar.xz
Add Generic GPIO driver
This patch adds generic memory-mapped GPIO controller support. Code taken from Linux Kernel and adopted for barebox. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/gpio/Makefile')
-rw-r--r--drivers/gpio/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index 993ab89596..1ef345ca72 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -1,4 +1,5 @@
-obj-$(CONFIG_GPIOLIB) += gpio.o
+obj-$(CONFIG_GPIOLIB) += gpio.o
obj-$(CONFIG_GPIO_BCM2835) += gpio-bcm2835.o
+obj-$(CONFIG_GPIO_GENERIC) += gpio-generic.o
obj-$(CONFIG_GPIO_PL061) += gpio-pl061.o
-obj-$(CONFIG_GPIO_STMPE) += gpio-stmpe.o
+obj-$(CONFIG_GPIO_STMPE) += gpio-stmpe.o