cpu/mips/cpu.c: Fix flush_cache bug
authorShinya Kuribayashi <shinya.kuribayashi@necel.com>
Tue, 8 Apr 2008 07:20:35 +0000 (16:20 +0900)
committerWolfgang Denk <wd@denx.de>
Thu, 17 Apr 2008 21:54:23 +0000 (14:54 -0700)
Cache operations have to take line address (addr), not start_addr.
I noticed this bug when debugging ping failure.

Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
cpu/mips/cpu.c

index 8b43d8e..e267bba 100644 (file)
@@ -56,8 +56,8 @@ void flush_cache(ulong start_addr, ulong size)
        unsigned long aend = (start_addr + size - 1) & ~(lsize - 1);
 
        while (1) {
-               cache_op(Hit_Writeback_Inv_D, start_addr);
-               cache_op(Hit_Invalidate_I, start_addr);
+               cache_op(Hit_Writeback_Inv_D, addr);
+               cache_op(Hit_Invalidate_I, addr);
                if (addr == aend)
                        break;
                addr += lsize;