aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-03-08 13:52:55 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-03-08 13:52:55 -0500
commitc68fd4f3ca90de7d18c567e70b2c164078aefadf (patch)
treeeaa80d187b308a9a21af433e890b58fb22552612 /kernel/irq
parentc69e3758ff56d03e161187355791ec992c574276 (diff)
genirq: Add comments to Kconfig switches
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'kernel/irq')
-rw-r--r--kernel/irq/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/irq/Kconfig b/kernel/irq/Kconfig
index 144db9dcfcde..09bef82d74cb 100644
--- a/kernel/irq/Kconfig
+++ b/kernel/irq/Kconfig
@@ -1,3 +1,4 @@
1# Select this to activate the generic irq options below
1config HAVE_GENERIC_HARDIRQS 2config HAVE_GENERIC_HARDIRQS
2 bool 3 bool
3 4
@@ -17,27 +18,36 @@ config GENERIC_HARDIRQS_NO_COMPAT
17 bool 18 bool
18 19
19# Options selectable by the architecture code 20# Options selectable by the architecture code
21
22# Make sparse irq Kconfig switch below available
20config HAVE_SPARSE_IRQ 23config HAVE_SPARSE_IRQ
21 bool 24 bool
22 25
26# Enable the generic irq autoprobe mechanism
23config GENERIC_IRQ_PROBE 27config GENERIC_IRQ_PROBE
24 bool 28 bool
25 29
30# Use the generic /proc/interrupts implementation
26config GENERIC_IRQ_SHOW 31config GENERIC_IRQ_SHOW
27 bool 32 bool
28 33
34# Support for delayed migration from interrupt context
29config GENERIC_PENDING_IRQ 35config GENERIC_PENDING_IRQ
30 bool 36 bool
31 37
38# Alpha specific irq affinity mechanism
32config AUTO_IRQ_AFFINITY 39config AUTO_IRQ_AFFINITY
33 bool 40 bool
34 41
42# Tasklet based software resend for pending interrupts on enable_irq()
35config HARDIRQS_SW_RESEND 43config HARDIRQS_SW_RESEND
36 bool 44 bool
37 45
46# Preflow handler support for fasteoi (sparc64)
38config IRQ_PREFLOW_FASTEOI 47config IRQ_PREFLOW_FASTEOI
39 bool 48 bool
40 49
50# Support forced irq threading
41config IRQ_FORCED_THREADING 51config IRQ_FORCED_THREADING
42 bool 52 bool
43 53