blob: 88883f8006c2a47145d6f329d76c5df9a1a6ee7f [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
8#include <asm/x86_init.h>
9
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,
20 },
Thomas Gleixner57844a82009-08-19 14:48:38 +020021};