aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/Kconfig
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@novell.com>2011-02-17 13:39:05 +0000
committerThomas Gleixner <tglx@linutronix.de>2011-02-22 22:33:10 +0100
commitfd4afaf33313d94f548cb09129ecba3dbab62931 (patch)
tree00c5816ace93c8b53df60c0fd675d9a46f03b500 /kernel/irq/Kconfig
parentgenirq: Use the correct variable for note_interrupt (diff)
downloadlinux-dev-fd4afaf33313d94f548cb09129ecba3dbab62931.tar.xz
linux-dev-fd4afaf33313d94f548cb09129ecba3dbab62931.zip
genirq: Streamline kernel/irq/Kconfig
"def_bool n" without prompt is pointless, these should be just "bool". [ tglx: Adapted to latest changes ] Signed-off-by: Jan Beulich <jbeulich@novell.com> LKML-Reference: <4D5D3309020000780003264A@vpn.id2.novell.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/Kconfig')
-rw-r--r--kernel/irq/Kconfig20
1 files changed, 10 insertions, 10 deletions
diff --git a/kernel/irq/Kconfig b/kernel/irq/Kconfig
index 9149be729e45..355b8c7957f5 100644
--- a/kernel/irq/Kconfig
+++ b/kernel/irq/Kconfig
@@ -1,5 +1,5 @@
config HAVE_GENERIC_HARDIRQS
- def_bool n
+ bool
if HAVE_GENERIC_HARDIRQS
menu "IRQ subsystem"
@@ -11,32 +11,32 @@ config GENERIC_HARDIRQS
# Select this to disable the deprecated stuff
config GENERIC_HARDIRQS_NO_DEPRECATED
- def_bool n
+ bool
config GENERIC_HARDIRQS_NO_COMPAT
- def_bool n
+ bool
# Options selectable by the architecture code
config HAVE_SPARSE_IRQ
- def_bool n
+ bool
config GENERIC_IRQ_PROBE
- def_bool n
+ bool
config GENERIC_IRQ_SHOW
- def_bool n
+ bool
config GENERIC_PENDING_IRQ
- def_bool n
+ bool
config AUTO_IRQ_AFFINITY
- def_bool n
+ bool
config HARDIRQS_SW_RESEND
- def_bool n
+ bool
config IRQ_PREFLOW_FASTEOI
- def_bool n
+ bool
config SPARSE_IRQ
bool "Support sparse irq numbering"