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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user