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 /drivers/mtd | |
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 'drivers/mtd')
-rw-r--r-- | drivers/mtd/cfi_flash.c | 4 |
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); |