]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - cpu/mips/cpu.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / cpu / mips / cpu.c
index 0f58d25b892bbcc77ee3436c232d7ecdbadcc89a..38d869797a7c791007c3f73827d2f81165a2c2da 100644 (file)
@@ -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);