summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c')
-rw-r--r--MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c b/MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c
index 2281115..1659327 100644
--- a/MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c
+++ b/MdeModulePkg/Library/EdkDxePrintLib/PrintLib.c
@@ -18,12 +18,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include <Uefi.h>
-#include <Protocol/Print.h>
+#include <Protocol/Print2.h>
#include <Library/PrintLib.h>
#include <Library/UefiBootServicesTableLib.h>
-static EFI_PRINT_PROTOCOL *gPrintProtocol = NULL;
+static EFI_PRINT2_PROTOCOL *gPrintProtocol = NULL;
EFI_STATUS
EFIAPI
@@ -34,7 +34,7 @@ InternalLocatePrintProtocol (
if (gPrintProtocol == NULL) {
Status = gBS->LocateProtocol (
- &gEfiPrintProtocolGuid,
+ &gEfiPrint2ProtocolGuid,
NULL,
(VOID **)&gPrintProtocol
);