diff options
author | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-01-14 09:46:12 +0000 |
---|---|---|
committer | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-01-14 09:46:12 +0000 |
commit | c11fa40c4e8124c7dfb8660b67aea1175e91cc13 (patch) | |
tree | f353906b1be94a029ee3cf021ed2db036d4866a2 /MdeModulePkg/Core/RuntimeDxe | |
parent | 9c1d98d822a9cd2146790d146c3ddd053b9cc759 (diff) | |
download | edk2-platforms-c11fa40c4e8124c7dfb8660b67aea1175e91cc13.tar.xz |
Fix the issue in MdeModulePkg that mismatch between PCD type and the PCD Lib API to get the PCD.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9751 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/RuntimeDxe')
-rw-r--r-- | MdeModulePkg/Core/RuntimeDxe/Runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/RuntimeDxe/Runtime.c b/MdeModulePkg/Core/RuntimeDxe/Runtime.c index b746221af4..2f2a3a7602 100644 --- a/MdeModulePkg/Core/RuntimeDxe/Runtime.c +++ b/MdeModulePkg/Core/RuntimeDxe/Runtime.c @@ -277,7 +277,7 @@ RuntimeDriverSetVirtualAddressMap ( //
// ReporstStatusCodeLib will check and make sure this service can be called in runtime mode.
//
- REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdStatusCodeValueSetVirtualAddressMap));
+ REPORT_STATUS_CODE (EFI_PROGRESS_CODE, FixedPcdGet32 (PcdStatusCodeValueSetVirtualAddressMap));
//
// Signal all the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE events.
|