diff options
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r-- | include/linux/irq.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 29f715e71bdd..f486c4dee1bf 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -57,10 +57,9 @@ typedef void fastcall (*irq_flow_handler_t)(unsigned int irq, | |||
57 | #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */ | 57 | #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */ |
58 | #define IRQ_NOREQUEST 0x00040000 /* IRQ cannot be requested */ | 58 | #define IRQ_NOREQUEST 0x00040000 /* IRQ cannot be requested */ |
59 | #define IRQ_NOAUTOEN 0x00080000 /* IRQ will not be enabled on request irq */ | 59 | #define IRQ_NOAUTOEN 0x00080000 /* IRQ will not be enabled on request irq */ |
60 | #define IRQ_DELAYED_DISABLE 0x00100000 /* IRQ disable (masking) happens delayed. */ | 60 | #define IRQ_WAKEUP 0x00100000 /* IRQ triggers system wakeup */ |
61 | #define IRQ_WAKEUP 0x00200000 /* IRQ triggers system wakeup */ | 61 | #define IRQ_MOVE_PENDING 0x00200000 /* need to re-target IRQ destination */ |
62 | #define IRQ_MOVE_PENDING 0x00400000 /* need to re-target IRQ destination */ | 62 | #define IRQ_NO_BALANCING 0x00400000 /* IRQ is excluded from balancing */ |
63 | #define IRQ_NO_BALANCING 0x00800000 /* IRQ is excluded from balancing */ | ||
64 | 63 | ||
65 | #ifdef CONFIG_IRQ_PER_CPU | 64 | #ifdef CONFIG_IRQ_PER_CPU |
66 | # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU) | 65 | # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU) |