1 #ifndef _POWERNV_H 2 #define _POWERNV_H 3 4 #ifdef CONFIG_SMP 5 extern void pnv_smp_init(void); 6 #else pnv_smp_init(void)7static inline void pnv_smp_init(void) { } 8 #endif 9 10 #ifdef CONFIG_PCI 11 extern void pnv_pci_init(void); 12 extern void pnv_pci_shutdown(void); 13 #else pnv_pci_init(void)14static inline void pnv_pci_init(void) { } pnv_pci_shutdown(void)15static inline void pnv_pci_shutdown(void) { } 16 #endif 17 18 #endif /* _POWERNV_H */ 19