mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
582d3e0994
This removes a bunch of "extern" declarations and CONFIG_SMP ifdefs. Signed-off-by: Kyle Moffett <Kyle.D.Moffett@boeing.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15 lines
256 B
C
15 lines
256 B
C
#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_ */
|