x86_init.c 541 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de>
  3. *
  4. * For licencing details see kernel-base/COPYING
  5. */
  6. #include <linux/init.h>
  7. #include <asm/bios_ebda.h>
  8. #include <asm/setup.h>
  9. void __cpuinit x86_init_noop(void) { }
  10. /*
  11. * The platform setup functions are preset with the default functions
  12. * for standard PC hardware.
  13. */
  14. struct __initdata x86_init_ops x86_init = {
  15. .resources = {
  16. .probe_roms = x86_init_noop,
  17. .reserve_resources = reserve_standard_io_resources,
  18. .reserve_ebda_region = reserve_ebda_region,
  19. },
  20. };