diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-04-15 14:31:45 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-04-15 14:31:45 +0000 |
commit | 51969ecb37e8d671c0237e936d79a51b7ca646ff (patch) | |
tree | 1d62d24d3a5cf080378d7dc0ec8d73ee6c017e19 /MdePkg/Library/UefiRuntimeLib/RuntimeLib.c | |
parent | aeb90c4a15e90a85121e47b541baeaeff1e150a4 (diff) | |
download | edk2-platforms-51969ecb37e8d671c0237e936d79a51b7ca646ff.tar.xz |
Fix several minor coding style issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8092 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiRuntimeLib/RuntimeLib.c')
-rw-r--r-- | MdePkg/Library/UefiRuntimeLib/RuntimeLib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c b/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c index 592663a865..2a6ab39ba4 100644 --- a/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c +++ b/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c @@ -22,7 +22,7 @@ EFI_EVENT mEfiVirtualNotifyEvent; EFI_EVENT mEfiExitBootServicesEvent;
BOOLEAN mEfiGoneVirtual = FALSE;
BOOLEAN mEfiAtRuntime = FALSE;
-EFI_RUNTIME_SERVICES *mRT;
+EFI_RUNTIME_SERVICES *gInternalRT;
/**
Set AtRuntime flag as TRUE after ExitBootServices.
@@ -63,7 +63,7 @@ RuntimeLibVirtualNotifyEvent ( //
// Update global for Runtime Services Table and IO
//
- EfiConvertPointer (0, (VOID **) &mRT);
+ EfiConvertPointer (0, (VOID **) &gInternalRT);
mEfiGoneVirtual = TRUE;
}
@@ -90,7 +90,7 @@ RuntimeDriverLibConstruct ( ASSERT (gRT != NULL);
ASSERT (gBS != NULL);
- mRT = gRT;
+ gInternalRT = gRT;
//
// Register SetVirtualAddressMap () notify function
//
|