diff options
author | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-10-31 20:59:49 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-03 12:52:21 +0300 |
commit | 73557af5bf32c3db973050de1fb73423e8fc873e (patch) | |
tree | 51a2d47d700beb7036df837ae036614169283aa2 /arch/x86/mach-voyager/voyager_smp.c | |
parent | 45beca08dd8b6d6a65c5ffd730af2eac7a2c7a03 (diff) | |
download | linux-73557af5bf32c3db973050de1fb73423e8fc873e.tar.xz |
x86, voyager: fix smp_intr_init() compile breakage
Impact: fix x86/Voyager build
Looks like this became static on the rest of x86. Fix it up by adding
an external definition to mach-voyager/setup.c
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-voyager/voyager_smp.c')
-rw-r--r-- | arch/x86/mach-voyager/voyager_smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mach-voyager/voyager_smp.c b/arch/x86/mach-voyager/voyager_smp.c index 7f4c6af14351..0e331652681e 100644 --- a/arch/x86/mach-voyager/voyager_smp.c +++ b/arch/x86/mach-voyager/voyager_smp.c @@ -1258,7 +1258,7 @@ static void handle_vic_irq(unsigned int irq, struct irq_desc *desc) #define QIC_SET_GATE(cpi, vector) \ set_intr_gate((cpi) + QIC_DEFAULT_CPI_BASE, (vector)) -void __init smp_intr_init(void) +void __init voyager_smp_intr_init(void) { int i; |