diff options
Diffstat (limited to 'arch/x86/kernel/acpi/boot.c')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 4af63dfb0f06..844e5e25213b 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -1226,7 +1226,9 @@ int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity) | |||
1226 | ioapic_pin); | 1226 | ioapic_pin); |
1227 | return gsi; | 1227 | return gsi; |
1228 | } | 1228 | } |
1229 | mp_config_acpi_gsi(dev, gsi, trigger, polarity); | 1229 | |
1230 | if (enable_update_mptable) | ||
1231 | mp_config_acpi_gsi(dev, gsi, trigger, polarity); | ||
1230 | 1232 | ||
1231 | set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin, | 1233 | set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin, |
1232 | trigger == ACPI_EDGE_SENSITIVE ? 0 : 1, | 1234 | trigger == ACPI_EDGE_SENSITIVE ? 0 : 1, |