diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2005-12-19 16:27:59 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-08 01:02:58 -0500 |
commit | 034d2f5af1b97664381c00b827b274c95e22c397 (patch) | |
tree | a72b9caba33ecf1fe47193c1fe5a6c0844e84341 | |
parent | 746f956beb534ddf73da4346de81f2941c8573f8 (diff) |
[PATCH] arm: fix dependencies for MTD_XIP
MTD_XIP depends on having working asm/mtd-xip.h; it's not just per-architecture
(arm-only, as current Kconfig would have it), but actually per-subarch as
well. Introduced a new symbol (ARCH_MTD_XIP) set by arch Kconfig; MTD_XIP
depends on it.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | arch/arm/Kconfig | 5 | ||||
-rw-r--r-- | drivers/mtd/chips/Kconfig | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 5959e36c3b4c..4a63a8e2e452 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -69,6 +69,9 @@ config GENERIC_ISA_DMA | |||
69 | config FIQ | 69 | config FIQ |
70 | bool | 70 | bool |
71 | 71 | ||
72 | config ARCH_MTD_XIP | ||
73 | bool | ||
74 | |||
72 | source "init/Kconfig" | 75 | source "init/Kconfig" |
73 | 76 | ||
74 | menu "System Type" | 77 | menu "System Type" |
@@ -136,6 +139,7 @@ config ARCH_L7200 | |||
136 | 139 | ||
137 | config ARCH_PXA | 140 | config ARCH_PXA |
138 | bool "PXA2xx-based" | 141 | bool "PXA2xx-based" |
142 | select ARCH_MTD_XIP | ||
139 | 143 | ||
140 | config ARCH_RPC | 144 | config ARCH_RPC |
141 | bool "RiscPC" | 145 | bool "RiscPC" |
@@ -152,6 +156,7 @@ config ARCH_SA1100 | |||
152 | bool "SA1100-based" | 156 | bool "SA1100-based" |
153 | select ISA | 157 | select ISA |
154 | select ARCH_DISCONTIGMEM_ENABLE | 158 | select ARCH_DISCONTIGMEM_ENABLE |
159 | select ARCH_MTD_XIP | ||
155 | 160 | ||
156 | config ARCH_S3C2410 | 161 | config ARCH_S3C2410 |
157 | bool "Samsung S3C2410" | 162 | bool "Samsung S3C2410" |
diff --git a/drivers/mtd/chips/Kconfig b/drivers/mtd/chips/Kconfig index effa0d7a73ac..205bb7083335 100644 --- a/drivers/mtd/chips/Kconfig +++ b/drivers/mtd/chips/Kconfig | |||
@@ -301,7 +301,7 @@ config MTD_JEDEC | |||
301 | 301 | ||
302 | config MTD_XIP | 302 | config MTD_XIP |
303 | bool "XIP aware MTD support" | 303 | bool "XIP aware MTD support" |
304 | depends on !SMP && (MTD_CFI_INTELEXT || MTD_CFI_AMDSTD) && EXPERIMENTAL && ARM | 304 | depends on !SMP && (MTD_CFI_INTELEXT || MTD_CFI_AMDSTD) && EXPERIMENTAL && ARCH_MTD_XIP |
305 | default y if XIP_KERNEL | 305 | default y if XIP_KERNEL |
306 | help | 306 | help |
307 | This allows MTD support to work with flash memory which is also | 307 | This allows MTD support to work with flash memory which is also |