diff options
author | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-04 06:52:09 +0000 |
---|---|---|
committer | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-04 06:52:09 +0000 |
commit | cc39b88baa87d77ceeaffbe0d1fda188de6ab331 (patch) | |
tree | 5a8764764b4e9ca7bd4b6197fb2dfdd8952c2ebc /MdePkg/Library/BaseCacheMaintenanceLib | |
parent | a694b670e1a14b3a4da306463d9760176a73bef3 (diff) | |
download | edk2-platforms-cc39b88baa87d77ceeaffbe0d1fda188de6ab331.tar.xz |
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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c b/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c index 8e999a4040..9b940fc3f7 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);
}
|