Rename Protocol->Register() to Protocol->Install()
This commit is contained in:
parent
5106ed7bdc
commit
7fd5273476
@ -204,7 +204,7 @@ BlRegisterBootProtocol(IN PWCHAR SystemType,
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
BlRegisterProtocol(IN PEFI_GUID Guid,
|
||||
BlInstallProtocol(IN PEFI_GUID Guid,
|
||||
IN PVOID Interface);
|
||||
|
||||
XTCDECL
|
||||
@ -345,6 +345,10 @@ BlpInitializeSerialPort(IN ULONG PortNumber,
|
||||
IN ULONG PortAddress,
|
||||
IN ULONG BaudRate);
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
BlpInstallXtLoaderProtocol();
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
BlpLoadConfiguration();
|
||||
@ -368,10 +372,6 @@ BlpReadConfigFile(IN CONST PWCHAR ConfigDirectory,
|
||||
IN CONST PWCHAR ConfigFile,
|
||||
OUT PCHAR *ConfigData);
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
BlpRegisterXtLoaderProtocol();
|
||||
|
||||
XTCDECL
|
||||
VOID
|
||||
BlpStringFormat(IN BLPRINTCHAR PrintCharRoutine,
|
||||
|
@ -56,5 +56,5 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
||||
XtLdrProto->Boot.RegisterProtocol(L"XTOS", &DummyGuid);
|
||||
|
||||
/* Register DUMMY protocol as XTOS boot protocol */
|
||||
return XtLdrProto->Protocol.Register(&DummyGuid, &BlpDummyProtocol);
|
||||
return XtLdrProto->Protocol.Install(&DummyGuid, &BlpDummyProtocol);
|
||||
}
|
||||
|
@ -251,5 +251,5 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
||||
XtFramebufferProtocol.PrintDisplayInformation = FbPrintDisplayInformation;
|
||||
|
||||
/* Register XTOS boot protocol */
|
||||
return XtLdrProtocol->Protocol.Register(&Guid, &XtFramebufferProtocol);
|
||||
return XtLdrProtocol->Protocol.Install(&Guid, &XtFramebufferProtocol);
|
||||
}
|
||||
|
@ -603,5 +603,5 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
||||
XtPeCoffProtocol.RelocateImage = PeRelocateImage;
|
||||
|
||||
/* Register PE/COFF protocol */
|
||||
return XtLdrProtocol->Protocol.Register(&Guid, &XtPeCoffProtocol);
|
||||
return XtLdrProtocol->Protocol.Install(&Guid, &XtPeCoffProtocol);
|
||||
}
|
||||
|
@ -542,5 +542,5 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
||||
XtLdrProtocol->Boot.RegisterProtocol(L"XTOS", &Guid);
|
||||
|
||||
/* Install XTOS protocol */
|
||||
return XtLdrProtocol->Protocol.Register(&Guid, &XtBootProtocol);
|
||||
return XtLdrProtocol->Protocol.Install(&Guid, &XtBootProtocol);
|
||||
}
|
||||
|
@ -506,7 +506,7 @@ BlRegisterBootProtocol(IN PWCHAR SystemType,
|
||||
*/
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
BlRegisterProtocol(IN PEFI_GUID Guid,
|
||||
BlInstallProtocol(IN PEFI_GUID Guid,
|
||||
IN PVOID Interface)
|
||||
{
|
||||
EFI_HANDLE Handle = NULL;
|
||||
@ -516,7 +516,7 @@ BlRegisterProtocol(IN PEFI_GUID Guid,
|
||||
}
|
||||
|
||||
/**
|
||||
* This routine registers XTLDR protocol for further usage by modules.
|
||||
* This routine installs XTLDR protocol for further usage by modules.
|
||||
*
|
||||
* @return This routine returns a status code.
|
||||
*
|
||||
@ -524,7 +524,7 @@ BlRegisterProtocol(IN PEFI_GUID Guid,
|
||||
*/
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
BlpRegisterXtLoaderProtocol()
|
||||
BlpInstallXtLoaderProtocol()
|
||||
{
|
||||
EFI_GUID Guid = XT_BOOT_LOADER_PROTOCOL_GUID;
|
||||
|
||||
@ -556,7 +556,7 @@ BlpRegisterXtLoaderProtocol()
|
||||
BlpLdrProtocol.Memory.GetMemoryMap = BlGetMemoryMap;
|
||||
BlpLdrProtocol.Protocol.GetModulesList = BlGetModulesList;
|
||||
BlpLdrProtocol.Protocol.Open = BlOpenProtocol;
|
||||
BlpLdrProtocol.Protocol.Register = BlRegisterProtocol;
|
||||
BlpLdrProtocol.Protocol.Install = BlInstallProtocol;
|
||||
BlpLdrProtocol.Tui.DisplayErrorDialog = BlDisplayErrorDialog;
|
||||
BlpLdrProtocol.Tui.DisplayInfoDialog = BlDisplayInfoDialog;
|
||||
BlpLdrProtocol.Tui.DisplayInputDialog = BlDisplayInputDialog;
|
||||
@ -569,5 +569,5 @@ BlpRegisterXtLoaderProtocol()
|
||||
|
||||
/* Register XTLDR loader protocol */
|
||||
BlDebugPrint(L"Registering XT loader protocol\n");
|
||||
return BlRegisterProtocol(&Guid, &BlpLdrProtocol);
|
||||
return BlInstallProtocol(&Guid, &BlpLdrProtocol);
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user