diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2010-04-29 00:35:12 -0400 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2010-06-30 23:47:08 -0400 | 
| commit | b376bbb49f42ed8ea566ca1b3e440240204008ca (patch) | |
| tree | 101dcf4ce65791cafaea5bd1e68a3ebad2089ae2 /drivers/mtd/spi/macronix.c | |
| parent | 12c2e3bbbe873ca79817845077dd8e6630d71158 (diff) | |
| download | olio-uboot-2014.01-b376bbb49f42ed8ea566ca1b3e440240204008ca.tar.xz olio-uboot-2014.01-b376bbb49f42ed8ea566ca1b3e440240204008ca.zip | |
sf: move useful messages from debug to printf
At the moment, the default SPI flash subsystem is quite terse.  Errors and
successes both result in a generic message.  So move the useful errors and
useful successes to printf output by default.
While we're here, also convert the messages to use print_size().
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'drivers/mtd/spi/macronix.c')
| -rw-r--r-- | drivers/mtd/spi/macronix.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/drivers/mtd/spi/macronix.c b/drivers/mtd/spi/macronix.c index fe1310bf9..76d52841d 100644 --- a/drivers/mtd/spi/macronix.c +++ b/drivers/mtd/spi/macronix.c @@ -330,8 +330,9 @@ struct spi_flash *spi_flash_probe_macronix(struct spi_slave *spi, u8 *idcode)  	mcx->flash.size = params->page_size * params->pages_per_sector  	    * params->sectors_per_block * params->nr_blocks; -	printf("SF: Detected %s with page size %u, total %u bytes\n", -	      params->name, params->page_size, mcx->flash.size); +	printf("SF: Detected %s with page size %u, total ", +	       params->name, params->page_size); +	print_size(mcx->flash.size, "\n");  	return &mcx->flash;  } |