aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2018-01-05 12:34:23 +0530
committerStefano Babic <sbabic@denx.de>2018-01-08 17:37:12 +0100
commitca9d211e2c7801bc3e194d325ece0d3b583b32d2 (patch)
tree26c7110d5960983a653423cea3b342a8c291a9bf
parentff8822998f8dac9014e02f933a81ab913671e344 (diff)
downloadu-boot-ca9d211e2c7801bc3e194d325ece0d3b583b32d2.zip
u-boot-ca9d211e2c7801bc3e194d325ece0d3b583b32d2.tar.gz
u-boot-ca9d211e2c7801bc3e194d325ece0d3b583b32d2.tar.bz2
mtd: nand: mxs_nand_spl: Remove nand size print
It is not much needed to print nand size in SPL during nand boot, and most of nand spl drivers doesn't print the same. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
-rw-r--r--drivers/mtd/nand/mxs_nand_spl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mtd/nand/mxs_nand_spl.c b/drivers/mtd/nand/mxs_nand_spl.c
index b6c9208..910f76d 100644
--- a/drivers/mtd/nand/mxs_nand_spl.c
+++ b/drivers/mtd/nand/mxs_nand_spl.c
@@ -153,7 +153,6 @@ static int mxs_nand_init(void)
nand_chip.numchips = 1;
/* identify flash device */
- puts(": ");
if (mxs_flash_ident(mtd)) {
printf("Failed to identify\n");
return -1;
@@ -167,7 +166,6 @@ static int mxs_nand_init(void)
mtd->size = nand_chip.chipsize;
nand_chip.scan_bbt(mtd);
- printf("%llu MiB\n", (mtd->size / (1024 * 1024)));
return 0;
}