diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-07 20:40:54 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 12:58:15 +0100 |
commit | 7acdd53e5b2c55b6f7e3427e85e2f91fa814a4f9 (patch) | |
tree | 4806536bae32605a3107d6c4384547693eda566c /kernel/irq/internals.h | |
parent | bd062e7667ac173afef57fbfe9327f3b914a9d4c (diff) | |
download | linux-7acdd53e5b2c55b6f7e3427e85e2f91fa814a4f9.tar.gz linux-7acdd53e5b2c55b6f7e3427e85e2f91fa814a4f9.tar.bz2 linux-7acdd53e5b2c55b6f7e3427e85e2f91fa814a4f9.zip |
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 { * Bit masks for desc->state * * IRQS_AUTODETECT - autodetection in progress + * IRQS_SPURIOUS_DISABLED - was disabled due to spurious interrupt + * detection */ enum { IRQS_AUTODETECT = 0x00000001, + IRQS_SPURIOUS_DISABLED = 0x00000002, }; #define irq_data_to_desc(data) container_of(data, struct irq_desc, irq_data) |