aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/internals.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-07 14:55:35 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-19 06:58:15 -0500
commit6954b75b488dd740950573f244ddd66fd28620aa (patch)
tree66a423d8d09c19d428e3e73373944a826f31f38e /kernel/irq/internals.h
parent6f91a52d9bb28396177662f1da0f2e2cef9cf5d0 (diff)
genirq: Move IRQ_POLL_INPROGRESS to core
No users outside of core. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/internals.h')
-rw-r--r--kernel/irq/internals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/irq/internals.h b/kernel/irq/internals.h
index dc5e21b84f9e..f5d28e1e1eda 100644
--- a/kernel/irq/internals.h
+++ b/kernel/irq/internals.h
@@ -39,10 +39,12 @@ enum {
39 * IRQS_AUTODETECT - autodetection in progress 39 * IRQS_AUTODETECT - autodetection in progress
40 * IRQS_SPURIOUS_DISABLED - was disabled due to spurious interrupt 40 * IRQS_SPURIOUS_DISABLED - was disabled due to spurious interrupt
41 * detection 41 * detection
42 * IRQS_POLL_INPROGRESS - polling in progress
42 */ 43 */
43enum { 44enum {
44 IRQS_AUTODETECT = 0x00000001, 45 IRQS_AUTODETECT = 0x00000001,
45 IRQS_SPURIOUS_DISABLED = 0x00000002, 46 IRQS_SPURIOUS_DISABLED = 0x00000002,
47 IRQS_POLL_INPROGRESS = 0x00000008,
46}; 48};
47 49
48#define irq_data_to_desc(data) container_of(data, struct irq_desc, irq_data) 50#define irq_data_to_desc(data) container_of(data, struct irq_desc, irq_data)