Skip to content

Commit

Permalink
Fix typo in call to irq_to_desc()
Browse files Browse the repository at this point in the history
Fix typo in call to irq_to_desc()

Signed-off-by: Morten H. Larsen <m-larsen@post6.tele.dk>
Signed-off-by: Matt Turner <mattst88@gmail.com>
  • Loading branch information
Morten Holst Larsen authored and Matt Turner committed Mar 2, 2011
1 parent dd9c154 commit 0c7a720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/alpha/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static char irq_user_affinity[NR_IRQS];

int irq_select_affinity(unsigned int irq)
{
struct irq_desc *desc = irq_to_desc[irq];
struct irq_desc *desc = irq_to_desc(irq);
static int last_cpu;
int cpu = last_cpu + 1;

Expand Down

0 comments on commit 0c7a720

Please sign in to comment.