Changeset 99544 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 27, 2023 8:16:31 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157053
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r99542 r99544 922 922 VBoxDD_SOURCES += \ 923 923 Misc/DevFlashCFI.cpp \ 924 Misc/DevPL031.cpp \ 924 925 Serial/DevPL011.cpp 925 926 endif -
trunk/src/VBox/Devices/build/VBoxDD.cpp
r99542 r99544 253 253 return rc; 254 254 255 rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePl031Rtc); 256 if (RT_FAILURE(rc)) 257 return rc; 258 255 259 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceFlashCFI); 256 260 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/build/VBoxDD.h
r99542 r99544 231 231 #ifdef VBOX_VMM_TARGET_ARMV8 232 232 extern const PDMDEVREG g_DevicePl011; 233 extern const PDMDEVREG g_DevicePl031Rtc; 233 234 extern const PDMDEVREG g_DeviceFlashCFI; 234 235 #endif
Note:
See TracChangeset
for help on using the changeset viewer.