Skip to content
Snippets Groups Projects
Commit 567901c8 authored by Jagan Teki's avatar Jagan Teki
Browse files

sf: probe: Use print_size arg as page_size


Use flash->page_size arg in print_size() instead of
flash->sector_size while printing detected flas part details.

Signed-off-by: default avatarJagannadha Sutradharudu Teki <jaganna@xilinx.com>
parent af878522
No related branches found
No related tags found
No related merge requests found
...@@ -325,7 +325,7 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs, ...@@ -325,7 +325,7 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
#endif #endif
#ifndef CONFIG_SPL_BUILD #ifndef CONFIG_SPL_BUILD
printf("SF: Detected %s with page size ", flash->name); printf("SF: Detected %s with page size ", flash->name);
print_size(flash->sector_size, ", total "); print_size(flash->page_size, ", total ");
print_size(flash->size, ""); print_size(flash->size, "");
if (flash->memory_map) if (flash->memory_map)
printf(", mapped at %p", flash->memory_map); printf(", mapped at %p", flash->memory_map);
......
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