Add type cast for better coding style.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15769 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -142,7 +142,7 @@ WriteBackInvalidateDataCacheRange (
|
||||
// Calculate the cache line alignment
|
||||
//
|
||||
End = (Start + Length + (CACHE_LINE_SIZE - 1)) & ~(CACHE_LINE_SIZE - 1);
|
||||
Start &= ~(CACHE_LINE_SIZE - 1);
|
||||
Start &= ~((UINTN) CACHE_LINE_SIZE - 1);
|
||||
|
||||
do {
|
||||
Start = (UINTN)AsmFlushCacheLine ((VOID*)Start) + CACHE_LINE_SIZE;
|
||||
|
Reference in New Issue
Block a user