Skip to content

Commit

Permalink
genirq: Remove move_*irq leftovers
Browse files Browse the repository at this point in the history
All users converted to new interface.

Signed-off-by: Thomas Gleixner <[email protected]>
  • Loading branch information
KAGA-KOKO committed Mar 29, 2011
1 parent 0c6f8a8 commit 851d7cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
4 changes: 0 additions & 4 deletions include/linux/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -386,13 +386,9 @@ extern int __irq_set_affinity_locked(struct irq_data *data, const struct cpumas
#ifdef CONFIG_GENERIC_HARDIRQS

#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_masked_irq(struct irq_data *data);
#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_masked_irq(struct irq_data *data) { }
#endif
Expand Down
10 changes: 0 additions & 10 deletions kernel/irq/migration.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ void irq_move_masked_irq(struct irq_data *idata)
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)
{
bool masked;
Expand All @@ -80,8 +75,3 @@ void irq_move_irq(struct irq_data *idata)
if (!masked)
idata->chip->irq_unmask(idata);
}

void move_native_irq(int irq)
{
irq_move_irq(irq_get_irq_data(irq));
}

0 comments on commit 851d7cf

Please sign in to comment.