diff options
Diffstat (limited to 'cpu/mips/cpu.c')
-rw-r--r-- | cpu/mips/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mips/cpu.c b/cpu/mips/cpu.c index 0f58d25b892..38d869797a7 100644 --- a/cpu/mips/cpu.c +++ b/cpu/mips/cpu.c @@ -51,7 +51,7 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) void flush_cache(ulong start_addr, ulong size) { - unsigned long lsize = CFG_CACHELINE_SIZE; + unsigned long lsize = CONFIG_SYS_CACHELINE_SIZE; unsigned long addr = start_addr & ~(lsize - 1); unsigned long aend = (start_addr + size - 1) & ~(lsize - 1); |