diff options
-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 | * |