Skip to content

Commit

Permalink
sparc64: Fix UP build.
Browse files Browse the repository at this point in the history
Can't reference irq_desc[].affinity when !SMP.

Reported-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Jan 26, 2010
1 parent 1091ce6 commit 6abce77
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions arch/sparc/kernel/irq_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,8 @@ static int irq_choose_cpu(unsigned int virt_irq, const struct cpumask *affinity)
return cpuid;
}
#else
static int irq_choose_cpu(unsigned int virt_irq, const struct cpumask *affinity)
{
return real_hard_smp_processor_id();
}
#define irq_choose_cpu(virt_irq, affinity) \
real_hard_smp_processor_id()
#endif

static void sun4u_irq_enable(unsigned int virt_irq)
Expand Down

0 comments on commit 6abce77

Please sign in to comment.