aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2014-11-19 08:09:07 -0500
committerArnd Bergmann <arnd@arndb.de>2014-11-19 08:09:07 -0500
commitcb61f6769b8836081940ba26249f1b756400c7df (patch)
tree57620fa623582243a765b2059e6a517e6a0231c5
parent7c3969c3a4f3593bf7963355e10401a8638cb1cb (diff)
ARM64: use GENERIC_PCI_IOMAP
Patch 09a5723983 ("arm64: Use include/asm-generic/io.h") correctly removed the GENERIC_IOMAP selection from ARM64, which is not needed on architectures that have memory-mapped PCI I/O space, however we now lack a pci_iomap() function. Fortunately, there is already a generic implementation for this case, so we just need to select GENERIC_PCI_IOMAP to make it all work. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Fixes: 09a5723983 ("arm64: Use include/asm-generic/io.h")
-rw-r--r--arch/arm64/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 37cd23625708..bc8879c283b9 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -25,6 +25,7 @@ config ARM64
25 select GENERIC_EARLY_IOREMAP 25 select GENERIC_EARLY_IOREMAP
26 select GENERIC_IRQ_PROBE 26 select GENERIC_IRQ_PROBE
27 select GENERIC_IRQ_SHOW 27 select GENERIC_IRQ_SHOW
28 select GENERIC_PCI_IOMAP
28 select GENERIC_SCHED_CLOCK 29 select GENERIC_SCHED_CLOCK
29 select GENERIC_SMP_IDLE_THREAD 30 select GENERIC_SMP_IDLE_THREAD
30 select GENERIC_STRNCPY_FROM_USER 31 select GENERIC_STRNCPY_FROM_USER