mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 16:18:54 -04:00
If we are using APIC_IO tell ACPI so it can route interrupts properly.
This still doesn't work quite right because of other APIC_IO hacks in the i386 PCI code.
This commit is contained in:
parent
eeb6dba253
commit
d3b9beba04
2 changed files with 6 additions and 0 deletions
|
|
@ -330,6 +330,9 @@ acpi_machdep_init(device_t dev)
|
|||
|
||||
acpi_install_wakeup_handler(sc);
|
||||
|
||||
#ifdef APIC_IO
|
||||
acpi_SetIntrModel(ACPI_INTR_APIC);
|
||||
#endif
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -330,6 +330,9 @@ acpi_machdep_init(device_t dev)
|
|||
|
||||
acpi_install_wakeup_handler(sc);
|
||||
|
||||
#ifdef APIC_IO
|
||||
acpi_SetIntrModel(ACPI_INTR_APIC);
|
||||
#endif
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue