blob: 6dae6a3d2d598d2ebdce251bdd1dad4f423b85f5 (
plain) (
tree)
|
|
/*
* 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;
}
|