diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2007-12-10 23:49:35 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:19:00 -0500 |
commit | d7ef4fb3acd1c1b141202c728ab3a78140a44eb7 (patch) | |
tree | 5fe3e2364b9c9de10f1b44eb0d14adcffec3f203 /arch/sh/Kconfig.debug | |
parent | 543d5afe5b425ef25a865656bfb76083515dc1cf (diff) |
sh: Use def_bool where possible.
Change occurances of:
bool
default X
to:
def_bool X
Change ocurances of:
bool "Foo"
default X
to:
def_bool X
prompt "Foo"
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Kconfig.debug')
-rw-r--r-- | arch/sh/Kconfig.debug | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/sh/Kconfig.debug b/arch/sh/Kconfig.debug index b0dcb240d798..2881d8471a17 100644 --- a/arch/sh/Kconfig.debug +++ b/arch/sh/Kconfig.debug | |||
@@ -1,8 +1,7 @@ | |||
1 | menu "Kernel hacking" | 1 | menu "Kernel hacking" |
2 | 2 | ||
3 | config TRACE_IRQFLAGS_SUPPORT | 3 | config TRACE_IRQFLAGS_SUPPORT |
4 | bool | 4 | def_bool y |
5 | default y | ||
6 | 5 | ||
7 | source "lib/Kconfig.debug" | 6 | source "lib/Kconfig.debug" |
8 | 7 | ||
@@ -120,19 +119,19 @@ config COMPILE_OPTIONS | |||
120 | depends on MORE_COMPILE_OPTIONS | 119 | depends on MORE_COMPILE_OPTIONS |
121 | 120 | ||
122 | config KGDB_NMI | 121 | config KGDB_NMI |
123 | bool "Enter KGDB on NMI" | 122 | def_bool n |
124 | default n | 123 | prompt "Enter KGDB on NMI" |
125 | 124 | ||
126 | config SH_KGDB_CONSOLE | 125 | config SH_KGDB_CONSOLE |
127 | bool "Console messages through GDB" | 126 | def_bool n |
127 | prompt "Console messages through GDB" | ||
128 | depends on !SERIAL_SH_SCI_CONSOLE && SERIAL_SH_SCI=y | 128 | depends on !SERIAL_SH_SCI_CONSOLE && SERIAL_SH_SCI=y |
129 | select SERIAL_CORE_CONSOLE | 129 | select SERIAL_CORE_CONSOLE |
130 | default n | ||
131 | 130 | ||
132 | config KGDB_SYSRQ | 131 | config KGDB_SYSRQ |
133 | bool "Allow SysRq 'G' to enter KGDB" | 132 | def_bool y |
133 | prompt "Allow SysRq 'G' to enter KGDB" | ||
134 | depends on MAGIC_SYSRQ | 134 | depends on MAGIC_SYSRQ |
135 | default y | ||
136 | 135 | ||
137 | comment "Serial port setup" | 136 | comment "Serial port setup" |
138 | 137 | ||