diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2010-12-28 18:12:05 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-01-19 00:02:37 +0100 |
commit | eddf52b593c6c5dfa1c0ce51a6656e3635175feb (patch) | |
tree | fb0ef8d985b8eb7a94f5cb1d7384b1911e973592 /arch/m68k | |
parent | 16721715b9f753c6f165bb62eb8e6f57652cc3dc (diff) | |
download | u-boot-imx-eddf52b593c6c5dfa1c0ce51a6656e3635175feb.zip u-boot-imx-eddf52b593c6c5dfa1c0ce51a6656e3635175feb.tar.gz u-boot-imx-eddf52b593c6c5dfa1c0ce51a6656e3635175feb.tar.bz2 |
Replace "FLASH" strings with "Flash" or "flash"
There's no compelling reason to have the output on bootup or the
"flinfo" command print "flash" in uppercase, so use the proper case
where appropriate.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/lib/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/lib/board.c b/arch/m68k/lib/board.c index 9a51908..7867ba5 100644 --- a/arch/m68k/lib/board.c +++ b/arch/m68k/lib/board.c @@ -460,7 +460,7 @@ void board_init_r (gd_t *id, ulong dest_addr) malloc_bin_reloc (); #if !defined(CONFIG_SYS_NO_FLASH) - puts ("FLASH: "); + puts ("Flash: "); if ((flash_size = flash_init ()) > 0) { # ifdef CONFIG_SYS_FLASH_CHECKSUM |