diff options
author | Daniel Silverstone <daniel.silverstone@codethink.co.uk> | 2015-01-28 17:37:28 +0000 |
---|---|---|
committer | Daniel Silverstone <daniel.silverstone@codethink.co.uk> | 2015-01-28 17:37:28 +0000 |
commit | 5f06398ae6a04f414932243de38b5cf3d264ff84 (patch) | |
tree | 4f6779fe5cabeba100deca25b66f959b58b5dca1 | |
parent | 3e0245d07a82d677664b0e16db0c42f277029d28 (diff) | |
download | linux-baserock/apm-xgene-m400-moonshot-cartridge.tar.gz |
GPIO: Allow GPIO_DWAPB to depend on ARM || ARM64baserock/danielsilverstone/m400-from-hpbaserock/apm-xgene-m400-moonshot-cartridge
The dwapb driver previously depended only on ARM for the
{readl,writel}_relaxed() functions. ARM64 has them, and the HP m400
cartridge uses the driver for controlling the power of the cartridge.
Signed-off-by: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-rw-r--r-- | drivers/gpio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 633ec216e185..4940c718c3a6 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -148,7 +148,7 @@ config GPIO_GENERIC_PLATFORM config GPIO_DWAPB tristate "Synopsys DesignWare APB GPIO driver" - depends on ARM + depends on ARM || ARM64 depends on OF_GPIO select GPIO_GENERIC select GENERIC_IRQ_CHIP |