x86: Move paravirt banner printout to x86_init_ops
[linux-2.6/next.git] / arch / x86 / kernel / x86_init.c
blob08fea49d59a2968566d0f97354456629fd01ed3b
1 /*
2 * Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de>
4 * For licencing details see kernel-base/COPYING
5 */
6 #include <linux/init.h>
8 #include <asm/bios_ebda.h>
9 #include <asm/paravirt.h>
10 #include <asm/mpspec.h>
11 #include <asm/setup.h>
12 #include <asm/e820.h>
13 #include <asm/irq.h>
15 void __cpuinit x86_init_noop(void) { }
16 void __init x86_init_uint_noop(unsigned int unused) { }
19 * The platform setup functions are preset with the default functions
20 * for standard PC hardware.
22 struct __initdata x86_init_ops x86_init = {
24 .resources = {
25 .probe_roms = x86_init_noop,
26 .reserve_resources = reserve_standard_io_resources,
27 .reserve_ebda_region = reserve_ebda_region,
28 .memory_setup = default_machine_specific_memory_setup,
31 .mpparse = {
32 .mpc_record = x86_init_uint_noop,
33 .setup_ioapic_ids = x86_init_noop,
34 .mpc_apic_id = default_mpc_apic_id,
35 .smp_read_mpc_oem = default_smp_read_mpc_oem,
36 .mpc_oem_bus_info = default_mpc_oem_bus_info,
37 .find_smp_config = default_find_smp_config,
38 .get_smp_config = default_get_smp_config,
41 .irqs = {
42 .pre_vector_init = init_ISA_irqs,
43 .intr_init = native_init_IRQ,
44 .trap_init = x86_init_noop,
47 .oem = {
48 .arch_setup = x86_init_noop,
49 .banner = default_banner,