diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-03-20 07:54:24 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:58 -0400 |
commit | 73b2961bfa003518bb9cdd3c4003fad4d474ec13 (patch) | |
tree | 554e9509153f6c7498b22d12b5c605a5ed37eed3 /arch/x86/kernel/io_apic_32.c | |
parent | d27e2b8e2ac34b62aca95d3cd7efe9708b718fde (diff) |
x86: use not_pci bitmap #2
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/io_apic_32.c')
-rw-r--r-- | arch/x86/kernel/io_apic_32.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/x86/kernel/io_apic_32.c b/arch/x86/kernel/io_apic_32.c index b5680780fa95..f7f3f3144fda 100644 --- a/arch/x86/kernel/io_apic_32.c +++ b/arch/x86/kernel/io_apic_32.c | |||
@@ -826,10 +826,7 @@ static int __init find_isa_irq_apic(int irq, int type) | |||
826 | for (i = 0; i < mp_irq_entries; i++) { | 826 | for (i = 0; i < mp_irq_entries; i++) { |
827 | int lbus = mp_irqs[i].mpc_srcbus; | 827 | int lbus = mp_irqs[i].mpc_srcbus; |
828 | 828 | ||
829 | if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA || | 829 | if (test_bit(lbus, mp_bus_not_pci) && |
830 | mp_bus_id_to_type[lbus] == MP_BUS_EISA || | ||
831 | mp_bus_id_to_type[lbus] == MP_BUS_MCA | ||
832 | ) && | ||
833 | (mp_irqs[i].mpc_irqtype == type) && | 830 | (mp_irqs[i].mpc_irqtype == type) && |
834 | (mp_irqs[i].mpc_srcbusirq == irq)) | 831 | (mp_irqs[i].mpc_srcbusirq == irq)) |
835 | break; | 832 | break; |