summaryrefslogtreecommitdiff
path: root/drivers/mtd/cfi_flash.c
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2010-12-28 18:12:05 -0600
committerWolfgang Denk <wd@denx.de>2011-01-19 00:02:37 +0100
commiteddf52b593c6c5dfa1c0ce51a6656e3635175feb (patch)
treefb0ef8d985b8eb7a94f5cb1d7384b1911e973592 /drivers/mtd/cfi_flash.c
parent16721715b9f753c6f165bb62eb8e6f57652cc3dc (diff)
downloadu-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 'drivers/mtd/cfi_flash.c')
-rw-r--r--drivers/mtd/cfi_flash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index 1e8d375..dd394a8 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -1158,7 +1158,7 @@ void flash_print_info (flash_info_t * info)
return;
}
- printf ("%s FLASH (%d x %d)",
+ printf ("%s flash (%d x %d)",
info->name,
(info->portwidth << 3), (info->chipwidth << 3));
if (info->size < 1024*1024)
@@ -2110,7 +2110,7 @@ unsigned long flash_init (void)
size += flash_info[i].size;
if (flash_info[i].flash_id == FLASH_UNKNOWN) {
#ifndef CONFIG_SYS_FLASH_QUIET_TEST
- printf ("## Unknown FLASH on Bank %d "
+ printf ("## Unknown flash on Bank %d "
"- Size = 0x%08lx = %ld MB\n",
i+1, flash_info[i].size,
flash_info[i].size >> 20);