summaryrefslogtreecommitdiffstats
path: root/arch/microblaze
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2010-04-16 11:55:01 +0200
committerMichal Simek <monstr@monstr.eu>2010-04-16 12:15:36 +0200
commite6177b36b87d0ce627651e407b91245f16e5382e (patch)
tree94672e3c5522a4a02c36341cf9717c39f3a563eb /arch/microblaze
parent8125c980cc282000cbddb415f8ddbebf96e4edb4 (diff)
downloadtalos-obmc-uboot-e6177b36b87d0ce627651e407b91245f16e5382e.tar.gz
talos-obmc-uboot-e6177b36b87d0ce627651e407b91245f16e5382e.zip
microblaze: Change cache report messages
It is more accurate to show that caches are OFF instead of FAIL. Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze')
-rw-r--r--arch/microblaze/lib/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c
index 1d44a64565..41a1db6518 100644
--- a/arch/microblaze/lib/board.c
+++ b/arch/microblaze/lib/board.c
@@ -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)
OpenPOWER on IntegriCloud