Changeset 58835 in vbox
- Timestamp:
- Nov 23, 2015 5:48:44 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/fsw_efi.c
r56292 r58835 290 290 &PROTO_NAME(SimpleFileSystemProtocol), &pVolume->FileSystem, 291 291 NULL); 292 #if DEBUG_LEVEL /* This error is always printed and destroys the boot logo. */ 292 293 if (EFI_ERROR(Status)) 293 294 Print(L"Fsw ERROR: InstallMultipleProtocolInterfaces returned %x\n", Status); 295 #endif 294 296 } 295 297 VBoxLogFlowFuncLeaveRC(Status); -
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/fsw_hfs.c
r56292 r58835 39 39 #define DPRINT2(x,y) printf(x,y) 40 40 #define BP(msg) do { printf("ERROR: %s", msg); asm("int3"); } while (0) 41 #el se41 #elif defined DEBUG_LEVEL 42 42 #define CONCAT(x,y) x##y 43 43 #define DPRINT(x) Print(CONCAT(L,x)) 44 44 #define DPRINT2(x,y) Print(CONCAT(L,x), y) 45 45 #define BP(msg) DPRINT(msg) 46 #else 47 #define DPRINT(x) do { } while (0) 48 #define DPRINT2(x,y) do { } while (0) 49 #define BP(msg) do { } while (0) 46 50 #endif 47 51
Note:
See TracChangeset
for help on using the changeset viewer.