diff options
author | YD Tseng <ltyu101@gmail.com> | 2015-10-19 11:07:37 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-10-26 14:45:26 +0100 |
commit | 6057d40f41a30f234533e5cf28810dd3fd2b6995 (patch) | |
tree | 255c564993bdd56065c549935ab95ca0d900717f /drivers/gpio/Makefile | |
parent | 83ea24fd45f8793706b9a259842ab3f144661e25 (diff) | |
download | linux-next-6057d40f41a30f234533e5cf28810dd3fd2b6995.tar.gz |
gpio: driver for AMD Promontory
This patch adds a new GPIO driver for AMD Promontory chip.
This GPIO controller is enumerated by ACPI and the ACPI compliant
hardware ID is AMDF030.
Change history:
v2: 1. fix coding style
2. registers renaming
v3: 1. change include file
2. fix coding style
3. remove module_init/exit, add module_platform_driver
4. remove MODULE_ALIAS
v4: 1. change TOTAL_GPIO_PINS to PT_TOTAL_GPIO
2. remove PCI dependency in Kconfig
3. fix subject line
Signed-off-by: YD Tseng <Yd_Tseng@asmedia.com.tw>
Signed-off-by: Linus Walleij <linus.walleij@linaro.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 77a07e9d014a..43f4b3c71e80 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -19,6 +19,7 @@ obj-$(CONFIG_GPIO_ADP5520) += gpio-adp5520.o obj-$(CONFIG_GPIO_ADP5588) += gpio-adp5588.o obj-$(CONFIG_GPIO_ALTERA) += gpio-altera.o obj-$(CONFIG_GPIO_AMD8111) += gpio-amd8111.o +obj-$(CONFIG_GPIO_AMDPT) += gpio-amdpt.o obj-$(CONFIG_GPIO_ARIZONA) += gpio-arizona.o obj-$(CONFIG_ATH79) += gpio-ath79.o obj-$(CONFIG_GPIO_BCM_KONA) += gpio-bcm-kona.o |