Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bef1f402 authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Adrian Bunk
Browse files

kconfig: Standardize "depends" -> "depends on" in Kconfig files



Standardize the miniscule percentage of occurrences of "depends" in
Kconfig files to "depends on", and update kconfig-language.txt to
reflect that.

Signed-off-by: default avatarRobert P. J. Day <rpjday@mindspring.com>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent c48e3fca
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ them. A single configuration option is defined like this:

config MODVERSIONS
	bool "Set version information on all module symbols"
	depends MODULES
	depends on MODULES
	help
	  Usually, modules have to be recompiled whenever you switch to a new
	  kernel.  ...
@@ -163,7 +163,7 @@ The position of a menu entry in the tree is determined in two ways. First
it can be specified explicitly:

menu "Network device support"
	depends NET
	depends on NET

config NETDEVICES
	...
@@ -188,10 +188,10 @@ config MODULES

config MODVERSIONS
	bool "Set version information on all module symbols"
	depends MODULES
	depends on MODULES

comment "module support disabled"
	depends !MODULES
	depends on !MODULES

MODVERSIONS directly depends on MODULES, this means it's only visible if
MODULES is different from 'n'. The comment on the other hand is always
+8 −8
Original line number Diff line number Diff line
@@ -75,28 +75,28 @@ endmenu

config MACH_POODLE
	bool "Enable Sharp SL-5600 (Poodle) Support"
	depends PXA_SHARPSL_25x
	depends on PXA_SHARPSL_25x
	select SHARP_LOCOMO
	select PXA_SSP

config MACH_CORGI
	bool "Enable Sharp SL-C700 (Corgi) Support"
	depends PXA_SHARPSL_25x
	depends on PXA_SHARPSL_25x
	select PXA_SHARP_C7xx

config MACH_SHEPHERD
	bool "Enable Sharp SL-C750 (Shepherd) Support"
	depends PXA_SHARPSL_25x
	depends on PXA_SHARPSL_25x
	select PXA_SHARP_C7xx

config MACH_HUSKY
	bool "Enable Sharp SL-C760 (Husky) Support"
	depends PXA_SHARPSL_25x
	depends on PXA_SHARPSL_25x
	select PXA_SHARP_C7xx

config MACH_AKITA
	bool "Enable Sharp SL-1000 (Akita) Support"
	depends PXA_SHARPSL_27x
	depends on PXA_SHARPSL_27x
	select PXA_SHARP_Cxx00
	select MACH_SPITZ
	select I2C
@@ -104,17 +104,17 @@ config MACH_AKITA

config MACH_SPITZ
	bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
	depends PXA_SHARPSL_27x
	depends on PXA_SHARPSL_27x
	select PXA_SHARP_Cxx00

config MACH_BORZOI
	bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
	depends PXA_SHARPSL_27x
	depends on PXA_SHARPSL_27x
	select PXA_SHARP_Cxx00

config MACH_TOSA
	bool "Enable Sharp SL-6000x (Tosa) Support"
	depends PXA_SHARPSL_25x
	depends on PXA_SHARPSL_25x

config PXA25x
	bool
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ endchoice

config OMAP_SERIAL_WAKE
	bool "Enable wake-up events for serial ports"
	depends OMAP_MUX
	depends on OMAP_MUX
	default y
	help
	  Select this option if you want to have your system wake up
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ config BIOS_FIXUP
# OAK doesn't exist but wanted to keep this around for any future 403GCX boards
config 403GCX
	bool
	depends OAK
	depends on OAK
	default y

config 405EP
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ config HDPU
	  Select HDPU if configuring a Sky Computers Compute Blade.

config HDPU_FEATURES
	depends HDPU
	depends on HDPU
	tristate "HDPU-Features"
	help
	  Select to enable HDPU enhanced features.
Loading