diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-07 14:40:54 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 06:58:15 -0500 |
commit | 7acdd53e5b2c55b6f7e3427e85e2f91fa814a4f9 (patch) | |
tree | 4806536bae32605a3107d6c4384547693eda566c /kernel/irq/internals.h | |
parent | bd062e7667ac173afef57fbfe9327f3b914a9d4c (diff) |
genirq: Move IRQ_SPURIOUS_DISABLED to core state
No users outside.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/internals.h')
-rw-r--r-- | kernel/irq/internals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/irq/internals.h b/kernel/irq/internals.h index 7ffd4f439b92..dc5e21b84f9e 100644 --- a/kernel/irq/internals.h +++ b/kernel/irq/internals.h | |||
@@ -37,9 +37,12 @@ enum { | |||
37 | * Bit masks for desc->state | 37 | * Bit masks for desc->state |
38 | * | 38 | * |
39 | * IRQS_AUTODETECT - autodetection in progress | 39 | * IRQS_AUTODETECT - autodetection in progress |
40 | * IRQS_SPURIOUS_DISABLED - was disabled due to spurious interrupt | ||
41 | * detection | ||
40 | */ | 42 | */ |
41 | enum { | 43 | enum { |
42 | IRQS_AUTODETECT = 0x00000001, | 44 | IRQS_AUTODETECT = 0x00000001, |
45 | IRQS_SPURIOUS_DISABLED = 0x00000002, | ||
43 | }; | 46 | }; |
44 | 47 | ||
45 | #define irq_data_to_desc(data) container_of(data, struct irq_desc, irq_data) | 48 | #define irq_data_to_desc(data) container_of(data, struct irq_desc, irq_data) |