mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
To check polarity, check ACPI_MADT_POLARITY_CONFORMS, instead of ACPI_MADT_TRIGGER_CONFORMS.
PR:amd64/188010 Submitted by: syuu
This commit is contained in:
parent
b15a09c05e
commit
7dcf10fe67
1 changed files with 1 additions and 1 deletions
|
|
@ -492,7 +492,7 @@ madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi)
|
|||
if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
|
||||
ioapic_set_triggermode(ioapic, pin,
|
||||
interrupt_trigger(nmi->IntiFlags, 0));
|
||||
if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
|
||||
if (!(nmi->IntiFlags & ACPI_MADT_POLARITY_CONFORMS))
|
||||
ioapic_set_polarity(ioapic, pin,
|
||||
interrupt_polarity(nmi->IntiFlags, 0));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue