Skip to content

Commit 9e7e2b0

Browse files
westeriKAGA-KOKO
authored andcommitted
genirq: Remove unused functions irqd_[set|clr]_chained_irq_inprogress()
These two functions are not used anywhere in the kernel source tree so remove them. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Cc: Jiang Liu <jiang.liu@linux.intel.com> Link: http://lkml.kernel.org/r/1443704093-36837-2-git-send-email-mika.westerberg@linux.intel.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
1 parent 92068d1 commit 9e7e2b0

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

include/linux/irq.h

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -297,21 +297,6 @@ static inline void irqd_clr_forwarded_to_vcpu(struct irq_data *d)
297297
__irqd_to_state(d) &= ~IRQD_FORWARDED_TO_VCPU;
298298
}
299299

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-
315300
static inline irq_hw_number_t irqd_to_hwirq(struct irq_data *d)
316301
{
317302
return d->hwirq;

0 commit comments

Comments
 (0)