From d6a6483cad4d28f141ba3916deee68a31b45cb9e Mon Sep 17 00:00:00 2001 From: lgao4 Date: Fri, 17 Apr 2009 05:45:32 +0000 Subject: Remove unused IfrSupportLib and ExtendedIfrSupportLib git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8119 6f19259b-4bc3-4df7-8a09-765794883524 --- .../UefiHiiServicesLib/UefiHiiServicesLib.c | 25 +++++++++++++--------- MdeModulePkg/MdeModulePkg.dsc | 4 ---- 2 files changed, 15 insertions(+), 14 deletions(-) (limited to 'MdeModulePkg') diff --git a/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.c b/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.c index 5cecf56e14..b31b7379f1 100644 --- a/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.c +++ b/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.c @@ -79,30 +79,35 @@ UefiHiiServicesLibConstructor ( IN EFI_SYSTEM_TABLE *SystemTable ) { + EFI_STATUS Status; + // - // Retrieve the pointer to the UEFI HII Font Protocol + // Retrieve the pointer to the UEFI HII String Protocol // - gBS->LocateProtocol (&gEfiHiiFontProtocolGuid, NULL, (VOID **) &gHiiFont); + Status = gBS->LocateProtocol (&gEfiHiiStringProtocolGuid, NULL, (VOID **) &gHiiString); + ASSERT_EFI_ERROR (Status); // - // Retrieve the pointer to the UEFI HII String Protocol + // Retrieve the pointer to the UEFI HII Database Protocol // - gBS->LocateProtocol (&gEfiHiiStringProtocolGuid, NULL, (VOID **) &gHiiString); + Status = gBS->LocateProtocol (&gEfiHiiDatabaseProtocolGuid, NULL, (VOID **) &gHiiDatabase); + ASSERT_EFI_ERROR (Status); // - // Retrieve the pointer to the UEFI HII Image Protocol + // Retrieve the pointer to the UEFI HII Config Routing Protocol // - gBS->LocateProtocol (&gEfiHiiImageProtocolGuid, NULL, (VOID **) &gHiiImage); + Status = gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID **) &gHiiConfigRouting); + ASSERT_EFI_ERROR (Status); // - // Retrieve the pointer to the UEFI HII Database Protocol + // Retrieve the pointer to the optional UEFI HII Font Protocol // - gBS->LocateProtocol (&gEfiHiiDatabaseProtocolGuid, NULL, (VOID **) &gHiiDatabase); + gBS->LocateProtocol (&gEfiHiiFontProtocolGuid, NULL, (VOID **) &gHiiFont); // - // Retrieve the pointer to the UEFI HII Config Routing Protocol + // Retrieve the pointer to the optional UEFI HII Image Protocol // - gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID **) &gHiiConfigRouting); + gBS->LocateProtocol (&gEfiHiiImageProtocolGuid, NULL, (VOID **) &gHiiImage); return EFI_SUCCESS; } diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc index a4828b5931..065121dffd 100644 --- a/MdeModulePkg/MdeModulePkg.dsc +++ b/MdeModulePkg/MdeModulePkg.dsc @@ -68,8 +68,6 @@ UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf - IfrSupportLib|MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf - ExtendedIfrSupportLib|MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf @@ -276,12 +274,10 @@ MdeModulePkg/Library/DxePlatDriOverLib/DxePlatDriOverLib.inf MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf MdeModulePkg/Library/DxePrintLibPrint2Protocol/DxePrintLibPrint2Protocol.inf - MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf MdeModulePkg/Library/PeiPerformanceLib/PeiPerformanceLib.inf MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.inf MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.inf MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf - MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf MdeModulePkg/Library/BaseMemoryTestLibNull/BaseMemoryTestLibNull.inf MdeModulePkg/Library/BaseMemoryTestLib/BaseMemoryTestLib.inf -- cgit v1.2.3