forked from Minki/linux
f7cf5a5b8c
probe_roms is only used on 32bit. Add it to the x86_init ops and remove the #ifdefs. Default initializer is x86_init_noop() which is overridden in the 32bit boot code. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
22 lines
417 B
C
22 lines
417 B
C
/*
|
|
* Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de>
|
|
*
|
|
* For licencing details see kernel-base/COPYING
|
|
*/
|
|
#include <linux/init.h>
|
|
|
|
#include <asm/x86_init.h>
|
|
|
|
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 = {
|
|
|
|
.resources = {
|
|
.probe_roms = x86_init_noop,
|
|
},
|
|
};
|