Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: c3b46c73264b03000d1e18b22f5caf63332547c9 authored by Linus Torvalds on 18 April 2016, 02:13:32 UTC
Linux 4.6-rc4
Tip revision: c3b46c7
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);
int __init mpc85xx_setup_pmc(void);
#else
static inline void mpc85xx_smp_init(void)
{
	/* Nothing to do */
}
#endif

#endif /* not POWERPC_85XX_SMP_H_ */
back to top