aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/visws_quirks.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-08-20 04:35:46 -0400
committerThomas Gleixner <tglx@linutronix.de>2009-08-31 03:35:45 -0400
commit428cf9025b15573e16e658032f2b963283e34ae0 (patch)
treefc4620e8b7965bb191b0cebd879eaa53ede5bdda /arch/x86/kernel/visws_quirks.c
parent66bcaf0bde100a4b54b82fc6fea6ceee2212ffb4 (diff)
x86: Move traps_init to x86_init_ops
Replace the quirks by a simple x86_init_ops function. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/visws_quirks.c')
-rw-r--r--arch/x86/kernel/visws_quirks.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/x86/kernel/visws_quirks.c b/arch/x86/kernel/visws_quirks.c
index a49013716da9..2719091b3351 100644
--- a/arch/x86/kernel/visws_quirks.c
+++ b/arch/x86/kernel/visws_quirks.c
@@ -224,11 +224,10 @@ static void __init visws_find_smp_config(unsigned int reserve)
224 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; 224 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
225} 225}
226 226
227static int visws_trap_init(void); 227static void visws_trap_init(void);
228 228
229static struct x86_quirks visws_x86_quirks __initdata = { 229static struct x86_quirks visws_x86_quirks __initdata = {
230 .arch_time_init = visws_time_init, 230 .arch_time_init = visws_time_init,
231 .arch_trap_init = visws_trap_init,
232}; 231};
233 232
234void __init visws_early_detect(void) 233void __init visws_early_detect(void)
@@ -252,6 +251,7 @@ void __init visws_early_detect(void)
252 x86_init.mpparse.get_smp_config = visws_get_smp_config; 251 x86_init.mpparse.get_smp_config = visws_get_smp_config;
253 x86_init.mpparse.find_smp_config = visws_find_smp_config; 252 x86_init.mpparse.find_smp_config = visws_find_smp_config;
254 x86_init.irqs.pre_vector_init = visws_pre_intr_init; 253 x86_init.irqs.pre_vector_init = visws_pre_intr_init;
254 x86_init.irqs.trap_init = visws_trap_init;
255 255
256 /* 256 /*
257 * Install reboot quirks: 257 * Install reboot quirks:
@@ -390,12 +390,10 @@ static __init void cobalt_init(void)
390 co_apic_read(CO_APIC_ID)); 390 co_apic_read(CO_APIC_ID));
391} 391}
392 392
393static int __init visws_trap_init(void) 393static void __init visws_trap_init(void)
394{ 394{
395 lithium_init(); 395 lithium_init();
396 cobalt_init(); 396 cobalt_init();
397
398 return 1;
399} 397}
400 398
401/* 399/*