diff options
author | Len Brown <len.brown@intel.com> | 2007-08-25 04:19:05 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-08-25 04:19:05 +0200 |
commit | 5a16eff86dc1194a17c69250492e820d828e3bde (patch) | |
tree | a0f990ce8682d7108f6fbd7f9d3c90a8d318d9b8 /arch/x86_64 | |
parent | Pull battery into release branch (diff) | |
parent | ACPI: boot correctly with "nosmp" or "maxcpus=0" (diff) | |
download | linux-5a16eff86dc1194a17c69250492e820d828e3bde.tar.xz linux-5a16eff86dc1194a17c69250492e820d828e3bde.zip |
Pull bugzilla-1641 into release branch
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/io_apic.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/x86_64/kernel/io_apic.c b/arch/x86_64/kernel/io_apic.c index f57f8b901912..966fa1062491 100644 --- a/arch/x86_64/kernel/io_apic.c +++ b/arch/x86_64/kernel/io_apic.c @@ -397,14 +397,12 @@ static void clear_IO_APIC (void) int skip_ioapic_setup; int ioapic_force; -/* dummy parsing: see setup.c */ - -static int __init disable_ioapic_setup(char *str) +static int __init parse_noapic(char *str) { - skip_ioapic_setup = 1; + disable_ioapic_setup(); return 0; } -early_param("noapic", disable_ioapic_setup); +early_param("noapic", parse_noapic); /* Actually the next is obsolete, but keep it for paranoid reasons -AK */ static int __init disable_timer_pin_setup(char *arg) |