Skip to content
Snippets Groups Projects
Commit 66dc09c5 authored by Lothar Waßmann's avatar Lothar Waßmann Committed by Tom Rini
Browse files

cmd, nand: fix broken output of "nand info"


If the value of either "nand options" or "bbt options" has a zero in
the most significant nibble, the '0x' prefix will be isolated from the
value like shown below:
|Device 0: nand0, sector size 128 KiB
|  Page size       2048 b
|  OOB size          64 b
|  Erase size    131072 b
|  subpagesize     2048 b
|  options     0x40000200
|  bbt options 0x   60000

Change the format string to produce leading zeroes filling the gap.

Signed-off-by: default avatarLothar Waßmann <LW@KARO-electronics.de>
parent 2bf94120
No related branches found
No related tags found
No related merge requests found
...@@ -295,8 +295,8 @@ static void nand_print_and_set_info(int idx) ...@@ -295,8 +295,8 @@ static void nand_print_and_set_info(int idx)
printf(" OOB size %8d b\n", mtd->oobsize); printf(" OOB size %8d b\n", mtd->oobsize);
printf(" Erase size %8d b\n", mtd->erasesize); printf(" Erase size %8d b\n", mtd->erasesize);
printf(" subpagesize %8d b\n", chip->subpagesize); printf(" subpagesize %8d b\n", chip->subpagesize);
printf(" options 0x%8x\n", chip->options); printf(" options 0x%08x\n", chip->options);
printf(" bbt options 0x%8x\n", chip->bbt_options); printf(" bbt options 0x%08x\n", chip->bbt_options);
/* Set geometry info */ /* Set geometry info */
setenv_hex("nand_writesize", mtd->writesize); setenv_hex("nand_writesize", mtd->writesize);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment