From: Adrian Bunk DEBUG_SHIRQ is clearly a debugging option. While moving the option below DEBUG_KERNEL, I also adjusted the help text to be completely visible in "make menuconfig" with a 80 char width. Signed-off-by: Adrian Bunk Cc: David Woodhouse Cc: Arjan van de Ven Signed-off-by: Andrew Morton --- lib/Kconfig.debug | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff -puN lib/Kconfig.debug~debug-shared-irqs-kconfig-fix lib/Kconfig.debug --- a/lib/Kconfig.debug~debug-shared-irqs-kconfig-fix +++ a/lib/Kconfig.debug @@ -81,21 +81,21 @@ config HEADERS_CHECK exported to $(INSTALL_HDR_PATH) (usually 'usr/include' in your build tree), to make sure they're suitable. -config DEBUG_SHIRQ - bool "Debug shared IRQ handlers" - depends on GENERIC_HARDIRQS - help - Enable this to generate a spurious interrupt as soon as a shared interrupt - handler is registered, and just before one is deregistered. Drivers ought - to be able to handle interrupts coming in at those points; some don't and - need to be caught. - config DEBUG_KERNEL bool "Kernel debugging" help Say Y here if you are developing drivers or trying to debug and identify kernel problems. +config DEBUG_SHIRQ + bool "Debug shared IRQ handlers" + depends on DEBUG_KERNEL && GENERIC_HARDIRQS + help + Enable this to generate a spurious interrupt as soon as a shared + interrupt handler is registered, and just before one is deregistered. + Drivers ought to be able to handle interrupts coming in at those + points; some don't and need to be caught. + config LOG_BUF_SHIFT int "Kernel log buffer size (16 => 64KB, 17 => 128KB)" if DEBUG_KERNEL range 12 21 _