From: Jagannadha Sutradharudu Teki Date: Sun, 15 Sep 2013 17:36:12 +0000 (+0530) Subject: sf: probe: Print erase_size while printing flash details X-Git-Tag: v2013.10~38^2~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3ea708f0d3cd0a13772f8fe86870d99925b0a868;p=oweals%2Fu-boot.git sf: probe: Print erase_size while printing flash details Included erase_size while printing probed flash details. Signed-off-by: Jagannadha Sutradharudu Teki --- diff --git a/drivers/mtd/spi/spi_flash_probe.c b/drivers/mtd/spi/spi_flash_probe.c index 68290bb2d8..8abb27dde6 100644 --- a/drivers/mtd/spi/spi_flash_probe.c +++ b/drivers/mtd/spi/spi_flash_probe.c @@ -325,7 +325,8 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs, #endif #ifndef CONFIG_SPL_BUILD printf("SF: Detected %s with page size ", flash->name); - print_size(flash->page_size, ", total "); + print_size(flash->page_size, ", erase size "); + print_size(flash->erase_size, ", total "); print_size(flash->size, ""); if (flash->memory_map) printf(", mapped at %p", flash->memory_map);