blob: 68c093b67ecfc54a3cb3d3f4a9793b224aa37276 [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 Gleixner8fee6972009-08-19 14:55:50 +02008#include <asm/setup.h>
Thomas Gleixner57844a82009-08-19 14:48:38 +02009
10void __cpuinit x86_init_noop(void) { }
11
12/*
13 * The platform setup functions are preset with the default functions
14 * for standard PC hardware.
15 */
16struct __initdata x86_init_ops x86_init = {
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020017
18 .resources = {
19 .probe_roms = x86_init_noop,
Thomas Gleixner8fee6972009-08-19 14:55:50 +020020 .reserve_resources = reserve_standard_io_resources,
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020021 },
Thomas Gleixner57844a82009-08-19 14:48:38 +020022};