smp.h 256 B

123456789101112131415
  1. #ifndef POWERPC_85XX_SMP_H_
  2. #define POWERPC_85XX_SMP_H_ 1
  3. #include <linux/init.h>
  4. #ifdef CONFIG_SMP
  5. void __init mpc85xx_smp_init(void);
  6. #else
  7. static inline void mpc85xx_smp_init(void)
  8. {
  9. /* Nothing to do */
  10. }
  11. #endif
  12. #endif /* not POWERPC_85XX_SMP_H_ */