diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-11-10 18:38:46 +1100 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-11-14 14:44:33 +1100 |
commit | 868accb7b9126dffdebb6b45631e145991e3535d (patch) | |
tree | 1245ba78565c6b3a4482b714cd733264b29d6fbe /arch/powerpc/kernel/irq.c | |
parent | d9ae2bad5c92cd116e3daedf16f79cf597e09ad7 (diff) | |
download | talos-op-linux-868accb7b9126dffdebb6b45631e145991e3535d.tar.gz talos-op-linux-868accb7b9126dffdebb6b45631e145991e3535d.zip |
powerpc: have only one definition of __irq_offset_value
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'arch/powerpc/kernel/irq.c')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 5e5ed4441c69..5a71ed9612fe 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c @@ -71,6 +71,11 @@ #include <asm/paca.h> #endif +int __irq_offset_value; +#ifdef CONFIG_PPC32 +EXPORT_SYMBOL(__irq_offset_value); +#endif + static int ppc_spurious_interrupts; #if defined(CONFIG_PPC_ISERIES) && defined(CONFIG_SMP) @@ -98,7 +103,6 @@ extern atomic_t ipi_sent; EXPORT_SYMBOL(irq_desc); int distribute_irqs = 1; -int __irq_offset_value; u64 ppc64_interrupt_controller; #endif /* CONFIG_PPC64 */ |