* The machine check registers for the BSP cannot be initialized until * the local APIC is initialized. This happens at SI_SUB_CPU, * SI_ORDER_SECOND. */
| 1384 | * SI_ORDER_SECOND. |
| 1385 | */ |
| 1386 | static void |
| 1387 | mca_init_bsp(void *arg __unused) |
| 1388 | { |
| 1389 | |
| 1390 | mca_init(); |
| 1391 | } |
| 1392 | SYSINIT(mca_init_bsp, SI_SUB_CPU, SI_ORDER_ANY, mca_init_bsp, NULL); |
| 1393 | |
| 1394 | /* Called when a machine check exception fires. */ |
nothing calls this directly
no test coverage detected