Rename Protocol->Register() to Protocol->Install()
Some checks failed
Builds / ExectOS (amd64) (push) Failing after 16s
Builds / ExectOS (i686) (push) Failing after 14s

This commit is contained in:
2024-01-07 20:54:59 +01:00
parent 5106ed7bdc
commit 7fd5273476
7 changed files with 17 additions and 17 deletions

View File

@@ -347,12 +347,12 @@ BlStartXtLoader(IN EFI_HANDLE ImageHandle,
BlDebugPrint(L"WARNING: Failed to disable watchdog timer (Status Code: 0x%lx)\n", Status);
}
/* Register loader protocol */
Status = BlpRegisterXtLoaderProtocol();
/* Install loader protocol */
Status = BlpInstallXtLoaderProtocol();
if(Status != STATUS_EFI_SUCCESS)
{
/* Failed to register loader protocol */
BlDebugPrint(L"ERROR: Failed to register XTLDR boot protocol (Status Code: 0x%lx)\n", Status);
BlDebugPrint(L"ERROR: Failed to register XTLDR loader protocol (Status Code: 0x%lx)\n", Status);
return Status;
}