Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: e36f014edff70fc02b3d3d79cead1d58f289332e authored by Linus Torvalds on 02 February 2015, 04:07:21 UTC
Linux 3.19-rc7
Tip revision: e36f014
smp.h
#ifndef POWERPC_85XX_SMP_H_
#define POWERPC_85XX_SMP_H_ 1

#include <linux/init.h>

#ifdef CONFIG_SMP
void __init mpc85xx_smp_init(void);
#else
static inline void mpc85xx_smp_init(void)
{
	/* Nothing to do */
}
#endif

#endif /* not POWERPC_85XX_SMP_H_ */
back to top