blob: 1fff49a6858cb8a5fa939f49b06e0b86576f2e48 [file] [log] [blame]
Thomas Gleixner57844a82009-08-19 14:48:38 +02001/*
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 Gleixner816c25e2009-08-19 14:36:27 +02008#include <asm/bios_ebda.h>
Thomas Gleixner8fee6972009-08-19 14:55:50 +02009#include <asm/setup.h>
Thomas Gleixner57844a82009-08-19 14:48:38 +020010
11void __cpuinit x86_init_noop(void) { }
12
13/*
14 * The platform setup functions are preset with the default functions
15 * for standard PC hardware.
16 */
17struct __initdata x86_init_ops x86_init = {
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020018
19 .resources = {
20 .probe_roms = x86_init_noop,
Thomas Gleixner8fee6972009-08-19 14:55:50 +020021 .reserve_resources = reserve_standard_io_resources,
Thomas Gleixner816c25e2009-08-19 14:36:27 +020022 .reserve_ebda_region = reserve_ebda_region,
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020023 },
Thomas Gleixner57844a82009-08-19 14:48:38 +020024};