summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-13 09:02:32 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-13 09:02:32 +0000
commitfa73b3be9179dec03c37761b05958253e7dc1deb (patch)
tree0651ee63d457ed0bd6725c05f6e312c618ac7cf4
parentff1f2270f2aa5ba7beeba24ffdd48300d3f7b613 (diff)
downloadedk2-fa73b3be9179dec03c37761b05958253e7dc1deb.tar.gz
edk2-fa73b3be9179dec03c37761b05958253e7dc1deb.tar.bz2
edk2-fa73b3be9179dec03c37761b05958253e7dc1deb.zip
Use PalLib instead of PalCallLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6512 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf2
-rw-r--r--MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c2
-rw-r--r--MdePkg/Library/BaseCpuLib/BaseCpuLib.inf2
-rw-r--r--MdePkg/Library/BaseCpuLib/Ipf/CpuSleep.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf b/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
index f71a735aa7..5b2e5b6bb5 100644
--- a/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
+++ b/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
@@ -46,7 +46,7 @@
MdePkg/MdePkg.dec
[LibraryClasses.Ipf]
- PalCallLib
+ PalLib
[LibraryClasses.common]
BaseLib
diff --git a/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c b/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c
index fc6ea25d52..aa33529db0 100644
--- a/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c
+++ b/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c
@@ -16,7 +16,7 @@
#include <Library/CacheMaintenanceLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
-#include <Library/PalCallLib.h>
+#include <Library/PalLib.h>
/**
Invalidates the entire instruction cache in cache coherency domain of the
diff --git a/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf b/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
index 51f4791643..8a9f6fedc9 100644
--- a/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
+++ b/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
@@ -61,4 +61,4 @@
[LibraryClasses.Ipf]
-PalCallLib
+ PalLib
diff --git a/MdePkg/Library/BaseCpuLib/Ipf/CpuSleep.c b/MdePkg/Library/BaseCpuLib/Ipf/CpuSleep.c
index 5ad64a5cf4..e12f881c09 100644
--- a/MdePkg/Library/BaseCpuLib/Ipf/CpuSleep.c
+++ b/MdePkg/Library/BaseCpuLib/Ipf/CpuSleep.c
@@ -12,7 +12,7 @@
**/
-#include <Library/PalCallLib.h>
+#include <Library/PalLib.h>
/**
Places the CPU in a sleep state until an interrupt is received.