blob: 6dae6a3d2d598d2ebdce251bdd1dad4f423b85f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Common SMP CPU bringup/teardown functions
*/
#include <linux/init.h>
#include "smpboot.h"
/**
* smpboot_prepare - generic smpboot preparation
*/
int __cpuinit smpboot_prepare(unsigned int cpu)
{
return 0;
}
|