You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
256 B
16 lines
256 B
13 years ago
|
#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_ */
|