Changeset 107308 in vbox for trunk/src/VBox/VMM/VMMR3/GICR3.cpp
- Timestamp:
- Dec 13, 2024 8:09:39 AM (5 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GICR3.cpp
r106999 r107308 33 33 #include <VBox/log.h> 34 34 #include "GICInternal.h" 35 #include <VBox/vmm/ gic.h>35 #include <VBox/vmm/pdmgic.h> 36 36 #include <VBox/vmm/cpum.h> 37 37 #include <VBox/vmm/hm.h> … … 425 425 * Register the GIC with PDM. 426 426 */ 427 rc = PDMDevHlpApicRegister(pDevIns); 427 rc = PDMDevHlpIcRegister(pDevIns); 428 AssertLogRelRCReturn(rc, rc); 429 430 rc = PDMGicRegisterBackend(pVM, PDMGICBACKENDTYPE_VBOX, &g_GicBackend); 428 431 AssertLogRelRCReturn(rc, rc); 429 432
Note:
See TracChangeset
for help on using the changeset viewer.