mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Initialize MCA in cpu_startup() so that it's ready before we wake-up
the application processors. This allows us to collect unconsumed AP specific error records as part of the wake-up.
This commit is contained in:
parent
6e0be618ed
commit
9bedf13fee
1 changed files with 3 additions and 0 deletions
|
|
@ -72,6 +72,7 @@
|
|||
#include <machine/md_var.h>
|
||||
#include <machine/reg.h>
|
||||
#include <machine/fpu.h>
|
||||
#include <machine/mca.h>
|
||||
#include <machine/pal.h>
|
||||
#include <machine/sal.h>
|
||||
#include <machine/bootinfo.h>
|
||||
|
|
@ -240,6 +241,8 @@ cpu_startup(dummy)
|
|||
if (!ia64_running_in_simulator())
|
||||
panic("Mandatory 'device acpica' is missing");
|
||||
#endif
|
||||
|
||||
ia64_mca_init();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue