mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
sf: use print_size() for sector_size output
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
334eb4b02f
commit
493c360721
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue