We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92068d1 commit 9e7e2b0Copy full SHA for 9e7e2b0
include/linux/irq.h
@@ -297,21 +297,6 @@ static inline void irqd_clr_forwarded_to_vcpu(struct irq_data *d)
297
__irqd_to_state(d) &= ~IRQD_FORWARDED_TO_VCPU;
298
}
299
300
-/*
301
- * Functions for chained handlers which can be enabled/disabled by the
302
- * standard disable_irq/enable_irq calls. Must be called with
303
- * irq_desc->lock held.
304
- */
305
-static inline void irqd_set_chained_irq_inprogress(struct irq_data *d)
306
-{
307
- __irqd_to_state(d) |= IRQD_IRQ_INPROGRESS;
308
-}
309
-
310
-static inline void irqd_clr_chained_irq_inprogress(struct irq_data *d)
311
312
- __irqd_to_state(d) &= ~IRQD_IRQ_INPROGRESS;
313
314
315
static inline irq_hw_number_t irqd_to_hwirq(struct irq_data *d)
316
{
317
return d->hwirq;
0 commit comments