| Submitter | Mike Frysinger |
|---|---|
| Date | April 12, 2011, 6:35 a.m. |
| Message ID | <1302590128-8721-8-git-send-email-vapier@gentoo.org> |
| Download | mbox | patch |
| Permalink | /patch/90720/ |
| State | Accepted |
| Commit | 493c36072160d72d5a8fe5943539da47c0a702a6 |
| Headers | show |
Comments
Patch
diff --git a/drivers/mtd/spi/spi_flash.c b/drivers/mtd/spi/spi_flash.c index ccb7e31..c75b716 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);
Signed-off-by: Mike Frysinger <vapier@gentoo.org> --- drivers/mtd/spi/spi_flash.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)