Skip to content

Commit

Permalink
ia64: sn: Use irq_move_irq()
Browse files Browse the repository at this point in the history
This replaces the old move_native_irq() function which is going away.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 91ce72e commit b5f0149
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/ia64/sn/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ static void sn_ack_irq(struct irq_data *data)
HUB_S((u64*)LOCAL_MMR_ADDR(SH_EVENT_OCCURRED_ALIAS), mask);
__set_bit(irq, (volatile void *)pda->sn_in_service_ivecs);

move_native_irq(irq);
irq_move_irq(data);
}

static void sn_irq_info_free(struct rcu_head *head);
Expand Down
2 changes: 1 addition & 1 deletion arch/ia64/sn/kernel/msi_sn.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ static int sn_set_msi_irq_affinity(struct irq_data *data,

static void sn_ack_msi_irq(struct irq_data *data)
{
move_native_irq(data->irq);
irq_move_irq(data);
ia64_eoi();
}

Expand Down

0 comments on commit b5f0149

Please sign in to comment.