diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-11-04 03:22:46 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-11-08 04:15:33 +0100 |
commit | 18244cfbc34e6bb3793977739b359a248899f42a (patch) | |
tree | c82a81fd92d2c93fd31ef83ba3baa516428b9120 /arch/powerpc/platforms/iseries/irq.h | |
parent | [POWERPC] Change fallocate to match unistd.h on powerpc (diff) | |
download | linux-18244cfbc34e6bb3793977739b359a248899f42a.tar.xz linux-18244cfbc34e6bb3793977739b359a248899f42a.zip |
[POWERPC] iSeries_init_IRQ non-PCI tidy
ppc_md.init_IRQ is not called if it is NULL, so we don't need an empty
routine in the non PCI case.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/iseries/irq.h')
-rw-r--r-- | arch/powerpc/platforms/iseries/irq.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/iseries/irq.h b/arch/powerpc/platforms/iseries/irq.h index 69f1b437fc7b..a1c236074034 100644 --- a/arch/powerpc/platforms/iseries/irq.h +++ b/arch/powerpc/platforms/iseries/irq.h @@ -1,9 +1,13 @@ #ifndef _ISERIES_IRQ_H #define _ISERIES_IRQ_H +#ifdef CONFIG_PCI extern void iSeries_init_IRQ(void); extern int iSeries_allocate_IRQ(HvBusNumber, HvSubBusNumber, u32); extern void iSeries_activate_IRQs(void); +#else +#define iSeries_init_IRQ NULL +#endif extern unsigned int iSeries_get_irq(void); #endif /* _ISERIES_IRQ_H */ |