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
This commit is contained in:
gikidy
2008-12-04 06:52:09 +00:00
parent a694b670e1
commit cc39b88baa
3 changed files with 17 additions and 18 deletions

View File

@@ -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);
}