diff options
author | Jan Beulich <JBeulich@novell.com> | 2011-02-17 08:39:05 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-22 16:33:10 -0500 |
commit | fd4afaf33313d94f548cb09129ecba3dbab62931 (patch) | |
tree | 00c5816ace93c8b53df60c0fd675d9a46f03b500 /kernel/irq/Kconfig | |
parent | 70433c01613c2a44756c7b25f7bdd6c1c77b119f (diff) |
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/Kconfig | 20 |
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 @@ | |||
1 | config HAVE_GENERIC_HARDIRQS | 1 | config HAVE_GENERIC_HARDIRQS |
2 | def_bool n | 2 | bool |
3 | 3 | ||
4 | if HAVE_GENERIC_HARDIRQS | 4 | if HAVE_GENERIC_HARDIRQS |
5 | menu "IRQ subsystem" | 5 | menu "IRQ subsystem" |
@@ -11,32 +11,32 @@ config GENERIC_HARDIRQS | |||
11 | 11 | ||
12 | # Select this to disable the deprecated stuff | 12 | # Select this to disable the deprecated stuff |
13 | config GENERIC_HARDIRQS_NO_DEPRECATED | 13 | config GENERIC_HARDIRQS_NO_DEPRECATED |
14 | def_bool n | 14 | bool |
15 | 15 | ||
16 | config GENERIC_HARDIRQS_NO_COMPAT | 16 | config GENERIC_HARDIRQS_NO_COMPAT |
17 | def_bool n | 17 | bool |
18 | 18 | ||
19 | # Options selectable by the architecture code | 19 | # Options selectable by the architecture code |
20 | config HAVE_SPARSE_IRQ | 20 | config HAVE_SPARSE_IRQ |
21 | def_bool n | 21 | bool |
22 | 22 | ||
23 | config GENERIC_IRQ_PROBE | 23 | config GENERIC_IRQ_PROBE |
24 | def_bool n | 24 | bool |
25 | 25 | ||
26 | config GENERIC_IRQ_SHOW | 26 | config GENERIC_IRQ_SHOW |
27 | def_bool n | 27 | bool |
28 | 28 | ||
29 | config GENERIC_PENDING_IRQ | 29 | config GENERIC_PENDING_IRQ |
30 | def_bool n | 30 | bool |
31 | 31 | ||
32 | config AUTO_IRQ_AFFINITY | 32 | config AUTO_IRQ_AFFINITY |
33 | def_bool n | 33 | bool |
34 | 34 | ||
35 | config HARDIRQS_SW_RESEND | 35 | config HARDIRQS_SW_RESEND |
36 | def_bool n | 36 | bool |
37 | 37 | ||
38 | config IRQ_PREFLOW_FASTEOI | 38 | config IRQ_PREFLOW_FASTEOI |
39 | def_bool n | 39 | bool |
40 | 40 | ||
41 | config SPARSE_IRQ | 41 | config SPARSE_IRQ |
42 | bool "Support sparse irq numbering" | 42 | bool "Support sparse irq numbering" |