aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/irq.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-08 05:39:15 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-19 06:58:16 -0500
commit163ef3091195f514a06f064b12914597d2644c55 (patch)
treea6e222b1a7366aa93c884257063aa36ef17cf91f /include/linux/irq.h
parent3d67baec7f1b01fc289ac1a2f1a7e6d5e43391c6 (diff)
genirq: Move IRQ_REPLAY and IRQ_WAITING to core
No users outside of core. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r--include/linux/irq.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index 1a4c723e74e1..c38dbd506656 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -53,12 +53,13 @@ typedef void (*irq_flow_handler_t)(unsigned int irq,
53 53
54#ifndef CONFIG_GENERIC_HARDIRQS_NO_COMPAT 54#ifndef CONFIG_GENERIC_HARDIRQS_NO_COMPAT
55#define IRQ_INPROGRESS 0x00000100 /* DEPRECATED */ 55#define IRQ_INPROGRESS 0x00000100 /* DEPRECATED */
56#define IRQ_REPLAY 0x00000200 /* DEPRECATED */
57#define IRQ_WAITING 0x00000400 /* DEPRECATED */
56#endif 58#endif
57 59
58#define IRQ_DISABLED 0x00000200 /* IRQ disabled - do not enter! */ 60#define IRQ_DISABLED 0x00000800 /* IRQ disabled - do not enter! */
59#define IRQ_PENDING 0x00000400 /* IRQ pending - replay on enable */ 61#define IRQ_PENDING 0x00001000 /* IRQ pending - replay on enable */
60#define IRQ_REPLAY 0x00000800 /* IRQ has been replayed but not acked yet */ 62
61#define IRQ_WAITING 0x00002000 /* IRQ not yet seen - for autodetection */
62#define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ 63#define IRQ_LEVEL 0x00004000 /* IRQ level triggered */
63#define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */ 64#define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */
64#define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */ 65#define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */