diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-08 06:17:57 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 06:58:17 -0500 |
commit | 2a0d6fb335d4428285dab2d254911748e6040807 (patch) | |
tree | 16090086899df6886436b89cc76e6d0d5b36d083 /include/linux/irq.h | |
parent | c1594b77e46124bb462f961e536120e471c67446 (diff) |
genirq: Move IRQ_PENDING flag to core
Keep status in sync until all users are fixed.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/irq.h')
-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 32efca71ce88..7ca55c9deba4 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -56,9 +56,9 @@ typedef void (*irq_flow_handler_t)(unsigned int irq, | |||
56 | #define IRQ_REPLAY 0x00000200 /* DEPRECATED */ | 56 | #define IRQ_REPLAY 0x00000200 /* DEPRECATED */ |
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 | #endif | 60 | #endif |
60 | 61 | ||
61 | #define IRQ_PENDING 0x00001000 /* IRQ pending - replay on enable */ | ||
62 | 62 | ||
63 | #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ | 63 | #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ |
64 | #define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */ | 64 | #define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */ |