Commit 188a8321 authored by Len Brown's avatar Len Brown

[ACPI] fix IO-APIC mode SCI storm due to sharing with PCI device (David Shaohua Li)

http://bugzilla.kernel.org/show_bug.cgi?id=1165
parent 198fd5d7
......@@ -1112,8 +1112,10 @@ void __init mp_parse_prt (void)
}
/* Don't set up the ACPI SCI because it's already set up */
if (acpi_fadt.sci_int == irq)
if (acpi_fadt.sci_int == irq) {
entry->irq = irq; /*we still need to set entry's irq*/
continue;
}
ioapic = mp_find_ioapic(irq);
if (ioapic < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment