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