summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Core
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2007-08-16 01:21:02 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2007-08-16 01:21:02 +0000
commiteba54e17cc5f136b16af35a561da809c16d1ac2a (patch)
tree3e0427f832b82594e9f1a0761635ee4e942c0d07 /MdeModulePkg/Core
parent66fa2bde56e5e0c4d5691a9251d9ed0056436765 (diff)
downloadedk2-eba54e17cc5f136b16af35a561da809c16d1ac2a.zip
edk2-eba54e17cc5f136b16af35a561da809c16d1ac2a.tar.gz
edk2-eba54e17cc5f136b16af35a561da809c16d1ac2a.tar.bz2
Update DXE Core to use gEfiCallerIdGuid instead of the gDxeServicesTableGuid for status codes
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3646 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core')
-rw-r--r--MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c2
-rw-r--r--MdeModulePkg/Core/Dxe/Library.h4
-rw-r--r--MdeModulePkg/Core/Dxe/Library/Library.c8
3 files changed, 7 insertions, 7 deletions
diff --git a/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c b/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
index 0324901..26bc94c 100644
--- a/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
+++ b/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
@@ -787,7 +787,7 @@ Returns:
//
// Report that ExitBootServices() has been called
//
- // We are using gEfiDxeServicesTableGuid as the caller ID for Dxe Core
+ // We are using gEfiCallerIdGuid as the caller ID for Dxe Core
//
CoreReportProgressCode ((EFI_SOFTWARE_EFI_BOOT_SERVICE | EFI_SW_BS_PC_EXIT_BOOT_SERVICES));
diff --git a/MdeModulePkg/Core/Dxe/Library.h b/MdeModulePkg/Core/Dxe/Library.h
index 5e33da5..8d41bd2 100644
--- a/MdeModulePkg/Core/Dxe/Library.h
+++ b/MdeModulePkg/Core/Dxe/Library.h
@@ -31,7 +31,7 @@ CoreReportProgressCode (
Routine Description:
- Report status code of type EFI_PROGRESS_CODE by caller ID gEfiDxeServicesTableGuid.
+ Report status code of type EFI_PROGRESS_CODE by caller ID gEfiCallerIdGuid.
Arguments:
@@ -54,7 +54,7 @@ CoreReportProgressCodeSpecific (
Routine Description:
- Report status code of type EFI_PROGRESS_CODE by caller ID gEfiDxeServicesTableGuid,
+ Report status code of type EFI_PROGRESS_CODE by caller ID gEfiCallerIdGuid,
with a handle as additional information.
Arguments:
diff --git a/MdeModulePkg/Core/Dxe/Library/Library.c b/MdeModulePkg/Core/Dxe/Library/Library.c
index 3d8a312..b7c9097 100644
--- a/MdeModulePkg/Core/Dxe/Library/Library.c
+++ b/MdeModulePkg/Core/Dxe/Library/Library.c
@@ -41,7 +41,7 @@ CoreReportProgressCodeSpecific (
Routine Description:
- Report status code of type EFI_PROGRESS_CODE by caller ID gEfiDxeServicesTableGuid,
+ Report status code of type EFI_PROGRESS_CODE by caller ID gEfiCallerIdGuid,
with a handle as additional information.
Arguments:
@@ -65,7 +65,7 @@ Returns:
EFI_PROGRESS_CODE,
Value,
0,
- &gEfiDxeServicesTableGuid,
+ &gEfiCallerIdGuid,
(EFI_STATUS_CODE_DATA *) &mStatusCodeData
);
}
@@ -79,7 +79,7 @@ CoreReportProgressCode (
Routine Description:
- Report status code of type EFI_PROGRESS_CODE by caller ID gEfiDxeServicesTableGuid.
+ Report status code of type EFI_PROGRESS_CODE by caller ID gEfiCallerIdGuid.
Arguments:
@@ -97,7 +97,7 @@ Returns:
EFI_PROGRESS_CODE,
Value,
0,
- &gEfiDxeServicesTableGuid,
+ &gEfiCallerIdGuid,
NULL
);
}