Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 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 | |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame] | 8 | #include <asm/bios_ebda.h> |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame] | 9 | #include <asm/setup.h> |
Thomas Gleixner | 6b18ae3 | 2009-08-20 10:19:54 +0200 | [diff] [blame^] | 10 | #include <asm/e820.h> |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 11 | |
| 12 | void __cpuinit x86_init_noop(void) { } |
| 13 | |
| 14 | /* |
| 15 | * The platform setup functions are preset with the default functions |
| 16 | * for standard PC hardware. |
| 17 | */ |
| 18 | struct __initdata x86_init_ops x86_init = { |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 19 | |
| 20 | .resources = { |
| 21 | .probe_roms = x86_init_noop, |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame] | 22 | .reserve_resources = reserve_standard_io_resources, |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame] | 23 | .reserve_ebda_region = reserve_ebda_region, |
Thomas Gleixner | 6b18ae3 | 2009-08-20 10:19:54 +0200 | [diff] [blame^] | 24 | .memory_setup = default_machine_specific_memory_setup, |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 25 | }, |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 26 | }; |