diff options
Diffstat (limited to 'arch/x86/kernel/mpparse.c')
-rw-r--r-- | arch/x86/kernel/mpparse.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index db0b70317949..27ccb7075342 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
@@ -289,17 +289,13 @@ static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early) | |||
289 | #ifdef CONFIG_X86_32 | 289 | #ifdef CONFIG_X86_32 |
290 | generic_mps_oem_check(mpc, oem, str); | 290 | generic_mps_oem_check(mpc, oem, str); |
291 | #endif | 291 | #endif |
292 | /* save the local APIC address, it might be non-default */ | 292 | /* Initialize the lapic mapping */ |
293 | if (!acpi_lapic) | 293 | if (!acpi_lapic) |
294 | mp_lapic_addr = mpc->lapic; | 294 | register_lapic_address(mpc->lapic); |
295 | 295 | ||
296 | if (early) | 296 | if (early) |
297 | return 1; | 297 | return 1; |
298 | 298 | ||
299 | /* Initialize the lapic mapping */ | ||
300 | if (!acpi_lapic) | ||
301 | register_lapic_address(mpc->lapic); | ||
302 | |||
303 | if (mpc->oemptr) | 299 | if (mpc->oemptr) |
304 | x86_init.mpparse.smp_read_mpc_oem(mpc); | 300 | x86_init.mpparse.smp_read_mpc_oem(mpc); |
305 | 301 | ||