diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-08 10:38:00 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-08 10:38:21 -0500 |
commit | c9a443cdf7726ce8b78c3177c6ae601ce37292fc (patch) | |
tree | 4191db70a690b8eb7c86d8c3c10f827e4f2ab32a /include/linux/interrupt.h | |
parent | 285c1a2c3a5f84ce1c811ab4cb1f8a17466e1a06 (diff) | |
parent | dc5f219e88294b93009eef946251251ffffb6d60 (diff) |
Merge branch 'irq/for-xen' into irq/core
irq/for-xen contains new functionality to avoid Xen private irq
hackery. That branch has a single irq commit and is pulled by Xen to
base their new features on.
Merge it into irq/core as other patches modify the same code.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 63c5ad78e37c..56b7c97aaf0a 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -57,7 +57,7 @@ | |||
57 | * Used by threaded interrupts which need to keep the | 57 | * Used by threaded interrupts which need to keep the |
58 | * irq line disabled until the threaded handler has been run. | 58 | * irq line disabled until the threaded handler has been run. |
59 | * IRQF_NO_SUSPEND - Do not disable this IRQ during suspend | 59 | * IRQF_NO_SUSPEND - Do not disable this IRQ during suspend |
60 | * | 60 | * IRQF_FORCE_RESUME - Force enable it on resume even if IRQF_NO_SUSPEND is set |
61 | */ | 61 | */ |
62 | #define IRQF_DISABLED 0x00000020 | 62 | #define IRQF_DISABLED 0x00000020 |
63 | #define IRQF_SAMPLE_RANDOM 0x00000040 | 63 | #define IRQF_SAMPLE_RANDOM 0x00000040 |
@@ -69,6 +69,7 @@ | |||
69 | #define IRQF_IRQPOLL 0x00001000 | 69 | #define IRQF_IRQPOLL 0x00001000 |
70 | #define IRQF_ONESHOT 0x00002000 | 70 | #define IRQF_ONESHOT 0x00002000 |
71 | #define IRQF_NO_SUSPEND 0x00004000 | 71 | #define IRQF_NO_SUSPEND 0x00004000 |
72 | #define IRQF_FORCE_RESUME 0x00008000 | ||
72 | 73 | ||
73 | #define IRQF_TIMER (__IRQF_TIMER | IRQF_NO_SUSPEND) | 74 | #define IRQF_TIMER (__IRQF_TIMER | IRQF_NO_SUSPEND) |
74 | 75 | ||