diff options
author | Bill Richardson <wfrichar@chromium.org> | 2012-10-20 11:44:34 +0000 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2012-12-06 14:30:38 -0800 |
commit | 55ae10f8dbdf306e210240937ee4d558c8590447 (patch) | |
tree | 1ff8e33ea335da951a6e81d59518f71f27238d5b /drivers/gpio/Makefile | |
parent | 468ebf190a737dd1021ca15ff350ceee2001372e (diff) | |
download | u-boot-imx-55ae10f8dbdf306e210240937ee4d558c8590447.zip u-boot-imx-55ae10f8dbdf306e210240937ee4d558c8590447.tar.gz u-boot-imx-55ae10f8dbdf306e210240937ee4d558c8590447.tar.bz2 |
x86: gpio: Add GPIO driver for Intel ICH6 and later.
Implement <asm-generic/gpio.h> functions for Intel ICH6 and later.
Only GPIOs 0-31 are handled by this code.
Signed-off-by: Bill Richardson <wfrichar@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
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 d50ac3b..2d97b4f 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -26,6 +26,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libgpio.o COBJS-$(CONFIG_AT91_GPIO) += at91_gpio.o +COBJS-$(CONFIG_INTEL_ICH6_GPIO) += intel_ich6_gpio.o COBJS-$(CONFIG_KIRKWOOD_GPIO) += kw_gpio.o COBJS-$(CONFIG_MARVELL_GPIO) += mvgpio.o COBJS-$(CONFIG_MARVELL_MFP) += mvmfp.o |