From: Mike Frysinger Date: Tue, 12 Apr 2011 06:09:28 +0000 (-0400) Subject: sf: use print_size() for sector_size output X-Git-Tag: v2011.06-rc1~152^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=493c36072160d72d5a8fe5943539da47c0a702a6;p=u-boot sf: use print_size() for sector_size output Signed-off-by: Mike Frysinger --- diff --git a/drivers/mtd/spi/spi_flash.c b/drivers/mtd/spi/spi_flash.c index ccb7e31408..c75b716fd4 100644 --- a/drivers/mtd/spi/spi_flash.c +++ b/drivers/mtd/spi/spi_flash.c @@ -297,8 +297,8 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs, goto err_manufacturer_probe; } - printf("SF: Detected %s with page size %u, total ", - flash->name, flash->sector_size); + printf("SF: Detected %s with page size ", flash->name); + print_size(flash->sector_size, ", total "); print_size(flash->size, "\n"); spi_release_bus(spi);