diff options
author | 2012-11-20 22:24:30 +0000 | |
---|---|---|
committer | 2012-11-21 21:55:52 +0100 | |
commit | cf0936b06d8e98a157630e99f647e2ff6d29d7ad (patch) | |
tree | 651457e034e073d236e9b0e64e0008e4ed2e0150 /drivers/bcma/Makefile | |
parent | bcma: add comment to bcma_chipco_gpio_control (diff) | |
download | wireguard-linux-cf0936b06d8e98a157630e99f647e2ff6d29d7ad.tar.xz wireguard-linux-cf0936b06d8e98a157630e99f647e2ff6d29d7ad.zip |
bcma: add GPIO driver
Register a GPIO driver to access the GPIOs provided by the chip.
The GPIOs of the SoC should always start at 0 and the other GPIOs could
start at a random position. There is just one SoC in a system and when
they start at 0 the number is predictable.
Signed-off-by: Hauke Mehrtens <[email protected]>
Patchwork: http://patchwork.linux-mips.org/patch/4587
Acked-by: Florian Fainelli <[email protected]>
Diffstat (limited to 'drivers/bcma/Makefile')
-rw-r--r-- | drivers/bcma/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bcma/Makefile b/drivers/bcma/Makefile index 8ad42d41b2f2..734b32f09c0a 100644 --- a/drivers/bcma/Makefile +++ b/drivers/bcma/Makefile @@ -6,6 +6,7 @@ bcma-y += driver_pci.o bcma-$(CONFIG_BCMA_DRIVER_PCI_HOSTMODE) += driver_pci_host.o bcma-$(CONFIG_BCMA_DRIVER_MIPS) += driver_mips.o bcma-$(CONFIG_BCMA_DRIVER_GMAC_CMN) += driver_gmac_cmn.o +bcma-$(CONFIG_BCMA_DRIVER_GPIO) += driver_gpio.o bcma-$(CONFIG_BCMA_HOST_PCI) += host_pci.o bcma-$(CONFIG_BCMA_HOST_SOC) += host_soc.o obj-$(CONFIG_BCMA) += bcma.o |