[POWERPC] iSeries: Declare iSeries_pci_final_fixup in pci.h

Fixes sparse warning:
arch/powerpc/platforms/iseries/pci.c:169:13: warning: symbol 'iSeries_pci_final_fixup' was not declared. Should it be static?

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Stephen Rothwell
2007-11-19 17:06:56 +11:00
committed by Paul Mackerras
parent 1e10590475
commit 26b6d5b170
2 changed files with 6 additions and 5 deletions

View File

@ -59,5 +59,10 @@ static inline u64 iseries_ds_addr(struct device_node *node)
}
extern void iSeries_Device_Information(struct pci_dev*, int);
#ifdef CONFIG_PCI
extern void iSeries_pci_final_fixup(void);
#else
static void iSeries_pci_final_fixup(void) { }
#endif
#endif /* _PLATFORMS_ISERIES_PCI_H */