1 /* Simple oneliner include to the PCIv3 early init */ 2 #ifdef CONFIG_PCI 3 extern int pci_v3_early_init(void); 4 #else pci_v3_early_init(void)5static inline int pci_v3_early_init(void) 6 { 7 return 0; 8 } 9 #endif 10
1 /* Simple oneliner include to the PCIv3 early init */ 2 #ifdef CONFIG_PCI 3 extern int pci_v3_early_init(void); 4 #else pci_v3_early_init(void)5static inline int pci_v3_early_init(void) 6 { 7 return 0; 8 } 9 #endif 10