smp: Add generic smpboot facility
[linux-2.6-block.git] / kernel / smpboot.c
CommitLineData
38498a67
TG
1/*
2 * Common SMP CPU bringup/teardown functions
3 */
4#include <linux/init.h>
5
6#include "smpboot.h"
7
8/**
9 * smpboot_prepare - generic smpboot preparation
10 */
11int __cpuinit smpboot_prepare(unsigned int cpu)
12{
13 return 0;
14}