]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
microblaze: Change cache report messages
authorMichal Simek <monstr@monstr.eu>
Fri, 16 Apr 2010 09:55:01 +0000 (11:55 +0200)
committerMichal Simek <monstr@monstr.eu>
Fri, 16 Apr 2010 10:15:36 +0000 (12:15 +0200)
It is more accurate to show that caches are OFF instead of FAIL.

Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/lib/board.c

index 1d44a6456568723d93a7a7354c3e3520ca301213..41a1db65183215495a06a744a6b42c5ecc9b539b 100644 (file)
@@ -116,8 +116,8 @@ void board_init (void)
        }
 
        puts ("SDRAM :\n");
-       printf ("\t\tIcache:%s\n", icache_status() ? "OK" : "FAIL");
-       printf ("\t\tDcache:%s\n", dcache_status() ? "OK" : "FAIL");
+       printf ("\t\tIcache:%s\n", icache_status() ? "ON" : "OFF");
+       printf ("\t\tDcache:%s\n", dcache_status() ? "ON" : "OFF");
        printf ("\tU-Boot Start:0x%08x\n", TEXT_BASE);
 
 #if defined(CONFIG_CMD_FLASH)