diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-28 10:41:14 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-28 10:55:12 -0400 |
commit | 9cff60dfc3d54b60bc069627cee5624bfaa3f823 (patch) | |
tree | 488202912c3d197baaf63202db61f9393201760f /include/linux/irq.h | |
parent | 33b054b867b84015173a38d9cd9ff513b6498818 (diff) |
genirq: Provide setter inline for IRQD_IRQ_INPROGRESS
Special function for demultiplexing handlers which can be disabled via
disable_irq().
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r-- | include/linux/irq.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 41fc783171fd..84e1c5832c93 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -256,6 +256,21 @@ static inline bool irqd_irq_inprogress(struct irq_data *d) | |||
256 | return d->state_use_accessors & IRQD_IRQ_INPROGRESS; | 256 | return d->state_use_accessors & IRQD_IRQ_INPROGRESS; |
257 | } | 257 | } |
258 | 258 | ||
259 | /* | ||
260 | * Functions for chained handlers which can be enabled/disabled by the | ||
261 | * standard disable_irq/enable_irq calls. Must be called with | ||
262 | * irq_desc->lock held. | ||
263 | */ | ||
264 | static inline void irqd_set_chained_irq_inprogress(struct irq_data *d) | ||
265 | { | ||
266 | d->state_use_accessors |= IRQD_IRQ_INPROGRESS; | ||
267 | } | ||
268 | |||
269 | static inline void irqd_clr_chained_irq_inprogress(struct irq_data *d) | ||
270 | { | ||
271 | d->state_use_accessors &= ~IRQD_IRQ_INPROGRESS; | ||
272 | } | ||
273 | |||
259 | /** | 274 | /** |
260 | * struct irq_chip - hardware interrupt chip descriptor | 275 | * struct irq_chip - hardware interrupt chip descriptor |
261 | * | 276 | * |