Skip to content
Snippets Groups Projects
Commit e6177b36 authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Change cache report messages


It is more accurate to show that caches are OFF instead of FAIL.

Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 8125c980
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment