genirq: Remove move_*irq leftovers
All users converted to new interface. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
@@ -386,13 +386,9 @@ extern int __irq_set_affinity_locked(struct irq_data *data, const struct cpumas
|
|||||||
#ifdef CONFIG_GENERIC_HARDIRQS
|
#ifdef CONFIG_GENERIC_HARDIRQS
|
||||||
|
|
||||||
#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_PENDING_IRQ)
|
#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_PENDING_IRQ)
|
||||||
void move_native_irq(int irq);
|
|
||||||
void move_masked_irq(int irq);
|
|
||||||
void irq_move_irq(struct irq_data *data);
|
void irq_move_irq(struct irq_data *data);
|
||||||
void irq_move_masked_irq(struct irq_data *data);
|
void irq_move_masked_irq(struct irq_data *data);
|
||||||
#else
|
#else
|
||||||
static inline void move_native_irq(int irq) { }
|
|
||||||
static inline void move_masked_irq(int irq) { }
|
|
||||||
static inline void irq_move_irq(struct irq_data *data) { }
|
static inline void irq_move_irq(struct irq_data *data) { }
|
||||||
static inline void irq_move_masked_irq(struct irq_data *data) { }
|
static inline void irq_move_masked_irq(struct irq_data *data) { }
|
||||||
#endif
|
#endif
|
||||||
|
@@ -53,11 +53,6 @@ void irq_move_masked_irq(struct irq_data *idata)
|
|||||||
cpumask_clear(desc->pending_mask);
|
cpumask_clear(desc->pending_mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
void move_masked_irq(int irq)
|
|
||||||
{
|
|
||||||
irq_move_masked_irq(irq_get_irq_data(irq));
|
|
||||||
}
|
|
||||||
|
|
||||||
void irq_move_irq(struct irq_data *idata)
|
void irq_move_irq(struct irq_data *idata)
|
||||||
{
|
{
|
||||||
bool masked;
|
bool masked;
|
||||||
@@ -80,8 +75,3 @@ void irq_move_irq(struct irq_data *idata)
|
|||||||
if (!masked)
|
if (!masked)
|
||||||
idata->chip->irq_unmask(idata);
|
idata->chip->irq_unmask(idata);
|
||||||
}
|
}
|
||||||
|
|
||||||
void move_native_irq(int irq)
|
|
||||||
{
|
|
||||||
irq_move_irq(irq_get_irq_data(irq));
|
|
||||||
}
|
|
||||||
|
Reference in New Issue
Block a user