1 #ifndef _POWERNV_H 2 #define _POWERNV_H 3 4 #ifdef CONFIG_SMP 5 extern void pnv_smp_init(void); 6 #else 7 static 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 14 static inline void pnv_pci_init(void) { } 15 static inline void pnv_pci_shutdown(void) { } 16 #endif 17 18 extern void pnv_lpc_init(void); 19 20 #endif /* _POWERNV_H */ 21