mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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>
This commit is contained in:
parent
16721715b9
commit
eddf52b593
11 changed files with 13 additions and 13 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue