Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 61e6cfa80de5760bbe406f4e815b7739205754d2 authored by Linus Torvalds on 13 October 2013, 22:41:28 UTC
Linux 3.12-rc5
Tip revision: 61e6cfa
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