2009-08-19 06:48:38 -06:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de>
|
|
|
|
*
|
|
|
|
* For licencing details see kernel-base/COPYING
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
2009-08-19 06:36:27 -06:00
|
|
|
#include <asm/bios_ebda.h>
|
2009-08-19 06:55:50 -06:00
|
|
|
#include <asm/setup.h>
|
2009-08-19 06:48:38 -06:00
|
|
|
|
|
|
|
void __cpuinit x86_init_noop(void) { }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The platform setup functions are preset with the default functions
|
|
|
|
* for standard PC hardware.
|
|
|
|
*/
|
|
|
|
struct __initdata x86_init_ops x86_init = {
|
2009-08-19 06:43:56 -06:00
|
|
|
|
|
|
|
.resources = {
|
|
|
|
.probe_roms = x86_init_noop,
|
2009-08-19 06:55:50 -06:00
|
|
|
.reserve_resources = reserve_standard_io_resources,
|
2009-08-19 06:36:27 -06:00
|
|
|
.reserve_ebda_region = reserve_ebda_region,
|
2009-08-19 06:43:56 -06:00
|
|
|
},
|
2009-08-19 06:48:38 -06:00
|
|
|
};
|