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>
This commit is contained in:
parent
88dacbe961
commit
6340aa61b1
3 changed files with 3 additions and 3 deletions
|
@ -405,7 +405,7 @@ source arch/arm/mm/Kconfig
|
||||||
|
|
||||||
config IWMMXT
|
config IWMMXT
|
||||||
bool "Enable iWMMXt support"
|
bool "Enable iWMMXt support"
|
||||||
depends CPU_XSCALE || CPU_XSC3
|
depends on CPU_XSCALE || CPU_XSC3
|
||||||
default y if PXA27x
|
default y if PXA27x
|
||||||
help
|
help
|
||||||
Enable support for iWMMXt context switching at run time if
|
Enable support for iWMMXt context switching at run time if
|
||||||
|
|
|
@ -525,7 +525,7 @@ config CPU_BIG_ENDIAN
|
||||||
of your chipset/board/processor.
|
of your chipset/board/processor.
|
||||||
|
|
||||||
config CPU_HIGH_VECTOR
|
config CPU_HIGH_VECTOR
|
||||||
depends !MMU && CPU_CP15 && !CPU_ARM740T
|
depends on !MMU && CPU_CP15 && !CPU_ARM740T
|
||||||
bool "Select the High exception vector"
|
bool "Select the High exception vector"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
|
|
|
@ -217,7 +217,7 @@ menu "Processor type and features"
|
||||||
# Some platforms pre-zero memory, in which case the kernel doesn't need to
|
# Some platforms pre-zero memory, in which case the kernel doesn't need to
|
||||||
config ZERO_BSS
|
config ZERO_BSS
|
||||||
bool
|
bool
|
||||||
depends !V850E2_SIM85E2C
|
depends on !V850E2_SIM85E2C
|
||||||
default y
|
default y
|
||||||
|
|
||||||
# The crappy-ass zone allocator requires that the start of allocatable
|
# The crappy-ass zone allocator requires that the start of allocatable
|
||||||
|
|
Loading…
Add table
Reference in a new issue