mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 13:13:51 +00:00
15 lines
219 B
C
15 lines
219 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|