root/arch/powerpc/platforms/85xx/smp.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. mpc85xx_smp_init

   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #ifndef POWERPC_85XX_SMP_H_
   3 #define POWERPC_85XX_SMP_H_ 1
   4 
   5 #include <linux/init.h>
   6 
   7 #ifdef CONFIG_SMP
   8 void __init mpc85xx_smp_init(void);
   9 int __init mpc85xx_setup_pmc(void);
  10 #else
  11 static inline void mpc85xx_smp_init(void)
  12 {
  13         /* Nothing to do */
  14 }
  15 #endif
  16 
  17 #endif /* not POWERPC_85XX_SMP_H_ */

/* [<][>][^][v][top][bottom][index][help] */