powernv.h 390 B

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