|
@@ -327,7 +327,7 @@ void __dma_sync(void *vaddr, size_t size, int direction)
|
|
|
* invalidate only when cache-line aligned otherwise there is
|
|
|
* the potential for discarding uncommitted data from the cache
|
|
|
*/
|
|
|
- if ((start & (L1_CACHE_BYTES - 1)) || (size & (L1_CACHE_BYTES - 1)))
|
|
|
+ if ((start | end) & (L1_CACHE_BYTES - 1))
|
|
|
flush_dcache_range(start, end);
|
|
|
else
|
|
|
invalidate_dcache_range(start, end);
|