pSeries_reconfig.h 447 B

123456789101112131415
  1. #ifndef _PPC64_PSERIES_RECONFIG_H
  2. #define _PPC64_PSERIES_RECONFIG_H
  3. #ifdef __KERNEL__
  4. #ifdef CONFIG_PPC_PSERIES
  5. /* Not the best place to put this, will be fixed when we move some
  6. * of the rtas suspend-me stuff to pseries */
  7. extern void pSeries_coalesce_init(void);
  8. #else /* !CONFIG_PPC_PSERIES */
  9. static inline void pSeries_coalesce_init(void) { }
  10. #endif /* CONFIG_PPC_PSERIES */
  11. #endif /* __KERNEL__ */
  12. #endif /* _PPC64_PSERIES_RECONFIG_H */