ARM: mach-integrator: Add stub for pci_v3_early_init() for !CONFIG_PCI
[linux-2.6.git] / arch / arm / mach-integrator / pci_v3.h
blob06a9e2e7d007b847f650b8efbf0856a1f47978ae
1 /* Simple oneliner include to the PCIv3 early init */
2 #ifdef CONFIG_PCI
3 extern int pci_v3_early_init(void);
4 #else
5 static inline int pci_v3_early_init(void)
7 return 0;
9 #endif