Commit 395280b0 authored by Len Brown's avatar Len Brown Committed by Len Brown

[ACPI] handle SCI override to nth IOAPIC

http://bugzilla.kernel.org/show_bug.cgi?id=2835
parent bd326267
......@@ -1002,6 +1002,7 @@ void __init mp_config_acpi_legacy_irqs (void)
for (idx = 0; idx < mp_irq_entries; idx++)
if (mp_irqs[idx].mpc_srcbus == MP_ISA_BUS &&
(mp_irqs[idx].mpc_dstapic == ioapic) &&
(mp_irqs[idx].mpc_srcbusirq == i ||
mp_irqs[idx].mpc_dstirq == i))
break;
......
......@@ -857,6 +857,7 @@ void __init mp_config_acpi_legacy_irqs (void)
for (idx = 0; idx < mp_irq_entries; idx++)
if (mp_irqs[idx].mpc_srcbus == MP_ISA_BUS &&
(mp_irqs[idx].mpc_dstapic == ioapic) &&
(mp_irqs[idx].mpc_srcbusirq == i ||
mp_irqs[idx].mpc_dstirq == i))
break;
......
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