Refactor BlGetConfigValue to return EFI_STATUS and output value via parameter
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 28s
Builds / ExectOS (amd64, debug) (push) Successful in 36s
Builds / ExectOS (i686, release) (push) Successful in 27s
Builds / ExectOS (i686, debug) (push) Successful in 35s

This commit is contained in:
2025-08-27 19:44:52 +02:00
parent 1eea654a36
commit 2ee33ab229
7 changed files with 28 additions and 16 deletions

View File

@@ -105,7 +105,7 @@ BlpInitializeDebugConsole()
BaudRate = 0;
/* Get debug configuration */
DebugConfiguration = BlGetConfigValue(L"DEBUG");
BlGetConfigValue(L"DEBUG", &DebugConfiguration);
/* Make sure any debug options are provided and debug console is not initialized yet */
if(DebugConfiguration && BlpStatus.DebugPort == 0)