smpboot.c 219 B

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