summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseCacheMaintenanceLib
diff options
context:
space:
mode:
authorgikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-04 06:52:09 +0000
committergikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-04 06:52:09 +0000
commitcc39b88baa87d77ceeaffbe0d1fda188de6ab331 (patch)
tree5a8764764b4e9ca7bd4b6197fb2dfdd8952c2ebc /MdePkg/Library/BaseCacheMaintenanceLib
parenta694b670e1a14b3a4da306463d9760176a73bef3 (diff)
downloadedk2-cc39b88baa87d77ceeaffbe0d1fda188de6ab331.zip
edk2-cc39b88baa87d77ceeaffbe0d1fda188de6ab331.tar.gz
edk2-cc39b88baa87d77ceeaffbe0d1fda188de6ab331.tar.bz2
Change function IpfFlushCacheRange() to AsmFlushCacheRange() follow the Mde_Lib_Spec 0.61k
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6834 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseCacheMaintenanceLib')
-rw-r--r--MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c b/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c
index 8e999a4..9b940fc 100644
--- a/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c
+++ b/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c
@@ -68,7 +68,7 @@ InvalidateInstructionCacheRange (
)
{
ASSERT (Length <= MAX_ADDRESS - (UINTN)Address + 1);
- return IpfFlushCacheRange (Address, Length);
+ return AsmFlushCacheRange (Address, Length);
}
/**
@@ -125,7 +125,7 @@ WriteBackInvalidateDataCacheRange (
{
ASSERT (Length <= MAX_ADDRESS - (UINTN)Address + 1);
- return IpfFlushCacheRange (Address, Length);
+ return AsmFlushCacheRange (Address, Length);
}
/**
@@ -181,7 +181,7 @@ WriteBackDataCacheRange (
{
ASSERT (Length <= MAX_ADDRESS - (UINTN)Address + 1);
- return IpfFlushCacheRange (Address, Length);
+ return AsmFlushCacheRange (Address, Length);
}
/**
@@ -247,5 +247,5 @@ InvalidateDataCacheRange (
// Invalidation of a data cache range without writing back is not supported on
// IPF architecture, so write back and invalidate operation is performed.
//
- return IpfFlushCacheRange (Address, Length);
+ return AsmFlushCacheRange (Address, Length);
}