aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@mindspring.com>2007-02-17 13:05:24 -0500
committerAdrian Bunk <bunk@stusta.de>2007-02-17 13:05:24 -0500
commit6340aa61b1f1d9c2aadb20594778a5f849bcbb69 (patch)
treee9c27c55b2bf6fc0ecedf7b096424fabe45e4c71 /arch
parent88dacbe961aa63fa880b4f6f16515427f61fc3ca (diff)
kbuild: Replace remaining "depends" with "depends on"
Replace the very few remaining "depends" Kconfig directives with "depends on". Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/Kconfig2
-rw-r--r--arch/arm/mm/Kconfig2
-rw-r--r--arch/v850/Kconfig2
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 5c795193ebba..77d062eaf086 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -405,7 +405,7 @@ source arch/arm/mm/Kconfig
405 405
406config IWMMXT 406config IWMMXT
407 bool "Enable iWMMXt support" 407 bool "Enable iWMMXt support"
408 depends CPU_XSCALE || CPU_XSC3 408 depends on CPU_XSCALE || CPU_XSC3
409 default y if PXA27x 409 default y if PXA27x
410 help 410 help
411 Enable support for iWMMXt context switching at run time if 411 Enable support for iWMMXt context switching at run time if
diff --git a/arch/arm/mm/Kconfig b/arch/arm/mm/Kconfig
index aade2f72c920..3c2f97938c44 100644
--- a/arch/arm/mm/Kconfig
+++ b/arch/arm/mm/Kconfig
@@ -525,7 +525,7 @@ config CPU_BIG_ENDIAN
525 of your chipset/board/processor. 525 of your chipset/board/processor.
526 526
527config CPU_HIGH_VECTOR 527config CPU_HIGH_VECTOR
528 depends !MMU && CPU_CP15 && !CPU_ARM740T 528 depends on !MMU && CPU_CP15 && !CPU_ARM740T
529 bool "Select the High exception vector" 529 bool "Select the High exception vector"
530 default n 530 default n
531 help 531 help
diff --git a/arch/v850/Kconfig b/arch/v850/Kconfig
index dbfab8fc9b49..50ccc7f57cd0 100644
--- a/arch/v850/Kconfig
+++ b/arch/v850/Kconfig
@@ -217,7 +217,7 @@ menu "Processor type and features"
217 # Some platforms pre-zero memory, in which case the kernel doesn't need to 217 # Some platforms pre-zero memory, in which case the kernel doesn't need to
218 config ZERO_BSS 218 config ZERO_BSS
219 bool 219 bool
220 depends !V850E2_SIM85E2C 220 depends on !V850E2_SIM85E2C
221 default y 221 default y
222 222
223 # The crappy-ass zone allocator requires that the start of allocatable 223 # The crappy-ass zone allocator requires that the start of allocatable