mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
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>
This commit is contained in:
parent
8125c980cc
commit
e6177b36b8
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue