From: Mike Frysinger Date: Mon, 6 Oct 2008 08:01:26 +0000 (-0400) Subject: Blackfin: print out Flash: before checking it X-Git-Tag: v2009.06-rc1~138^2~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=45c48953e8a4038bd49c46813fcff5a207867ae4;p=u-boot Blackfin: print out Flash: before checking it If there is some problem in the flash init/checking code, it's nicer to see the message "Flash:" before crashing. This way the source of the problem is a bit more straightforward. Signed-off-by: Mike Frysinger --- diff --git a/lib_blackfin/board.c b/lib_blackfin/board.c index cc89590094..49465d2a05 100644 --- a/lib_blackfin/board.c +++ b/lib_blackfin/board.c @@ -327,8 +327,8 @@ void board_init_r(gd_t * id, ulong dest_addr) #if !defined(CONFIG_SYS_NO_FLASH) /* Initialize the flash and protect u-boot by default */ extern flash_info_t flash_info[]; - ulong size = flash_init(); puts("Flash: "); + ulong size = flash_init(); print_size(size, "\n"); flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,