cmd: load: align cache flush
authorChris Packham <judge.packham@gmail.com>
Tue, 25 Oct 2016 07:22:48 +0000 (20:22 +1300)
committerTom Rini <trini@konsulko.com>
Mon, 31 Oct 2016 14:13:18 +0000 (10:13 -0400)
Prevent cache misalignment message by ensuring that a whole cache line
is flushed.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
cmd/load.c

index 65557e4..77c3359 100644 (file)
@@ -997,7 +997,7 @@ static ulong load_serial_ymodem(ulong offset, int mode)
        xyzModem_stream_terminate(false, &getcxmodem);
 
 
-       flush_cache(offset, size);
+       flush_cache(offset, ALIGN(size, ARCH_DMA_MINALIGN));
 
        printf("## Total Size      = 0x%08x = %d Bytes\n", size, size);
        setenv_hex("filesize", size);