diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-08 06:36:06 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 06:58:17 -0500 |
commit | 6e40262ea43c4b0e3f435b3a083e4461ef921c17 (patch) | |
tree | 4548c1607f81701b77c0d63b544096cdee8ccde0 /include/linux | |
parent | 2a0d6fb335d4428285dab2d254911748e6040807 (diff) |
genirq: Move IRQ_MASKED to core
Keep status in sync until all users are fixed.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/irq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 7ca55c9deba4..9800bac4c398 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -57,11 +57,11 @@ typedef void (*irq_flow_handler_t)(unsigned int irq, | |||
57 | #define IRQ_WAITING 0x00000400 /* DEPRECATED */ | 57 | #define IRQ_WAITING 0x00000400 /* DEPRECATED */ |
58 | #define IRQ_DISABLED 0x00000800 /* DEPRECATED */ | 58 | #define IRQ_DISABLED 0x00000800 /* DEPRECATED */ |
59 | #define IRQ_PENDING 0x00001000 /* DEPRECATED */ | 59 | #define IRQ_PENDING 0x00001000 /* DEPRECATED */ |
60 | #define IRQ_MASKED 0x00002000 /* DEPRECATED */ | ||
60 | #endif | 61 | #endif |
61 | 62 | ||
62 | 63 | ||
63 | #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ | 64 | #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ |
64 | #define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */ | ||
65 | #define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */ | 65 | #define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */ |
66 | #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */ | 66 | #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */ |
67 | #define IRQ_NOREQUEST 0x00040000 /* IRQ cannot be requested */ | 67 | #define IRQ_NOREQUEST 0x00040000 /* IRQ cannot be requested */ |