diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-08 06:44:58 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 06:58:18 -0500 |
commit | c531e8361f1968d664e6e97fbd3bfa4cf0e62e42 (patch) | |
tree | 45b5dbd85203033af684a9588224044289236b0c /include/linux/irq.h | |
parent | 6e40262ea43c4b0e3f435b3a083e4461ef921c17 (diff) |
genirq: Move IRQ_SUSPENDED 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.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 9800bac4c398..3ce45c257edb 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -60,7 +60,6 @@ typedef void (*irq_flow_handler_t)(unsigned int irq, | |||
60 | #define IRQ_MASKED 0x00002000 /* DEPRECATED */ | 60 | #define IRQ_MASKED 0x00002000 /* DEPRECATED */ |
61 | #endif | 61 | #endif |
62 | 62 | ||
63 | |||
64 | #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ | 63 | #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */ |
65 | #define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */ | 64 | #define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */ |
66 | #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */ | 65 | #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */ |
@@ -71,7 +70,6 @@ typedef void (*irq_flow_handler_t)(unsigned int irq, | |||
71 | #define IRQ_NO_BALANCING 0x00400000 /* IRQ is excluded from balancing */ | 70 | #define IRQ_NO_BALANCING 0x00400000 /* IRQ is excluded from balancing */ |
72 | #define IRQ_MOVE_PCNTXT 0x01000000 /* IRQ migration from process context */ | 71 | #define IRQ_MOVE_PCNTXT 0x01000000 /* IRQ migration from process context */ |
73 | #define IRQ_AFFINITY_SET 0x02000000 /* IRQ affinity was set from userspace*/ | 72 | #define IRQ_AFFINITY_SET 0x02000000 /* IRQ affinity was set from userspace*/ |
74 | #define IRQ_SUSPENDED 0x04000000 /* IRQ has gone through suspend sequence */ | ||
75 | #define IRQ_NESTED_THREAD 0x10000000 /* IRQ is nested into another, no own handler thread */ | 73 | #define IRQ_NESTED_THREAD 0x10000000 /* IRQ is nested into another, no own handler thread */ |
76 | 74 | ||
77 | #define IRQF_MODIFY_MASK \ | 75 | #define IRQF_MODIFY_MASK \ |