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/sh | |
parent | 16721715b9f753c6f165bb62eb8e6f57652cc3dc (diff) |
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/sh')
-rw-r--r-- | arch/sh/lib/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/lib/board.c b/arch/sh/lib/board.c index cdac3826c76..968566c6f51 100644 --- a/arch/sh/lib/board.c +++ b/arch/sh/lib/board.c @@ -48,9 +48,9 @@ static int sh_flash_init(void) gd->bd->bi_flashsize = flash_init(); if (gd->bd->bi_flashsize >= (1024 * 1024)) - printf("FLASH: %ldMB\n", gd->bd->bi_flashsize / (1024*1024)); + printf("Flash: %ldMB\n", gd->bd->bi_flashsize / (1024*1024)); else - printf("FLASH: %ldKB\n", gd->bd->bi_flashsize / 1024); + printf("Flash: %ldKB\n", gd->bd->bi_flashsize / 1024); return 0; } |