Changeset 100116 in vbox
- Timestamp:
- Jun 8, 2023 12:38:00 PM (21 months ago)
- svn:sync-xref-src-repo-rev:
- 157809
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/DevEFI-armv8.cpp
r100039 r100116 189 189 190 190 /** 191 * @interface_method_impl{PDMDEVREG,pfn Reset}192 */ 193 static DECLCALLBACK(void) efiR3 Reset(PPDMDEVINS pDevIns)191 * @interface_method_impl{PDMDEVREG,pfnMemSetup} 192 */ 193 static DECLCALLBACK(void) efiR3MemSetup(PPDMDEVINS pDevIns, PDMDEVMEMSETUPCTX enmCtx) 194 194 { 195 195 PDEVEFIR3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PDEVEFIR3); 196 LogFlow(("efiR3Reset\n")); 197 196 LogFlow(("efiR3MemSetup\n")); 197 198 RT_NOREF(enmCtx); 198 199 if (pThisCC->GCPhysFdtAddress != RTGCPHYS_MAX) 199 200 { … … 406 407 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, N_("Can't attach resource Storage driver")); 407 408 408 efiR3Reset(pDevIns);409 409 return VINF_SUCCESS; 410 410 } … … 451 451 /* .pfnDestruct = */ efiR3Destruct, 452 452 /* .pfnRelocate = */ NULL, 453 /* .pfnMemSetup = */ NULL,453 /* .pfnMemSetup = */ efiR3MemSetup, 454 454 /* .pfnPowerOn = */ NULL, 455 /* .pfnReset = */ efiR3Reset,455 /* .pfnReset = */ NULL, 456 456 /* .pfnSuspend = */ NULL, 457 457 /* .pfnResume = */ NULL,
Note:
See TracChangeset
for help on using the changeset viewer.