diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-13 08:44:34 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-13 08:44:34 +0000 |
commit | 5a92a63603088ac0ed9aa6862c9873763aefeca4 (patch) | |
tree | a69764cafc9d0adb7895b1dcb0ee53815880488b | |
parent | 804dbc37ed454609f4b4ab19fed1a49da8b0472a (diff) | |
download | edk2-platforms-5a92a63603088ac0ed9aa6862c9873763aefeca4.tar.xz |
Use PalLib instead of PalCallLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6506 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Library/BasePalCallLibNull/BasePalCallLibNull.inf | 2 | ||||
-rw-r--r-- | MdePkg/Library/BasePalCallLibNull/PalCall.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/BasePalCallLibNull/BasePalCallLibNull.inf b/MdePkg/Library/BasePalCallLibNull/BasePalCallLibNull.inf index ba8bf8a66e..3aa694d05c 100644 --- a/MdePkg/Library/BasePalCallLibNull/BasePalCallLibNull.inf +++ b/MdePkg/Library/BasePalCallLibNull/BasePalCallLibNull.inf @@ -19,7 +19,7 @@ FILE_GUID = 632D5625-B73D-43b8-AF30-8D225D96168E
MODULE_TYPE = BASE
VERSION_STRING = 1.0
- LIBRARY_CLASS = PalCallLib
+ LIBRARY_CLASS = PalLib
EDK_RELEASE_VERSION = 0x00020000
diff --git a/MdePkg/Library/BasePalCallLibNull/PalCall.c b/MdePkg/Library/BasePalCallLibNull/PalCall.c index 3772f70972..e13711abdf 100644 --- a/MdePkg/Library/BasePalCallLibNull/PalCall.c +++ b/MdePkg/Library/BasePalCallLibNull/PalCall.c @@ -13,7 +13,7 @@ **/
#include <Base.h>
-#include <Library/PalCallLib.h>
+#include <Library/PalLib.h>
#include <Library/DebugLib.h>
/**
|