diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-04-12 02:10:19 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-04-12 02:30:25 -0400 |
commit | 840ff998895944fc51303cc43fdb258c4f89279c (patch) | |
tree | 7a6543bef4e0b1d2aab2dafe393e745ba47ca85e | |
parent | 493c36072160d72d5a8fe5943539da47c0a702a6 (diff) | |
download | u-boot-imx-840ff998895944fc51303cc43fdb258c4f89279c.zip u-boot-imx-840ff998895944fc51303cc43fdb258c4f89279c.tar.gz u-boot-imx-840ff998895944fc51303cc43fdb258c4f89279c.tar.bz2 |
cmd_sf: drop device status message when probing
The common spi flash layer displays useful info when probing, so no
need for us to duplicate that.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | common/cmd_sf.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/cmd_sf.c b/common/cmd_sf.c index afbef99..3abc4ff 100644 --- a/common/cmd_sf.c +++ b/common/cmd_sf.c @@ -106,9 +106,6 @@ static int do_spi_flash_probe(int argc, char * const argv[]) spi_flash_free(flash); flash = new; - printf("%u KiB %s at %u:%u is now current device\n", - flash->size >> 10, flash->name, bus, cs); - return 0; usage: |