diff options
author | Jens Scharsig <js_at_ng@scharsoft.de> | 2010-02-03 22:46:16 +0100 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-02-12 12:31:54 -0600 |
commit | ea8fbba73184a40437bdeccd888cf448d5f1105e (patch) | |
tree | dc0c802fc211dde3a13eed77576e9b72617f4e27 /drivers/gpio/Makefile | |
parent | 5d8e359c38d3ab80015e47d0cab792efe75cacf9 (diff) | |
download | u-boot-imx-ea8fbba73184a40437bdeccd888cf448d5f1105e.zip u-boot-imx-ea8fbba73184a40437bdeccd888cf448d5f1105e.tar.gz u-boot-imx-ea8fbba73184a40437bdeccd888cf448d5f1105e.tar.bz2 |
add a new AT91 GPIO driver
* add a real AT91 GPIO driver instead of header inline code
* resolve the mixing of port and pins
* change board config files to use new driver
* add macros to gpio to realize backward compatibility
Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
Diffstat (limited to 'drivers/gpio/Makefile')
-rw-r--r-- | drivers/gpio/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index acba56c..d966082 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -25,6 +25,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libgpio.a +COBJS-$(CONFIG_AT91_GPIO) += at91_gpio.o COBJS-$(CONFIG_KIRKWOOD_GPIO) += kw_gpio.o COBJS-$(CONFIG_MX31_GPIO) += mx31_gpio.o COBJS-$(CONFIG_PCA953X) += pca953x.o |