]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
sf: fix erase debug output
authorVadim Bendebury <vbendeb@chromium.org>
Wed, 12 Oct 2011 11:28:38 +0000 (11:28 +0000)
committerAnatolij Gustschin <agust@denx.de>
Mon, 5 Dec 2011 20:55:24 +0000 (21:55 +0100)
We want to show the length, so multiplying by sector size makes no sense.
This is a hold over from the erase code before the big refactor.

Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
drivers/mtd/spi/spi_flash.c

index ced4c940008b080923c0345e9afc8682a5814f4d..f689cc47cfccac051e4257de47bedfcecb5bd13a 100644 (file)
@@ -233,8 +233,7 @@ int spi_flash_cmd_erase(struct spi_flash *flash, u8 erase_cmd,
                        goto out;
        }
 
                        goto out;
        }
 
-       debug("SF: Successfully erased %zu bytes @ %#x\n",
-             len * erase_size, start);
+       debug("SF: Successfully erased %zu bytes @ %#x\n", len, start);
 
  out:
        spi_release_bus(flash->spi);
 
  out:
        spi_release_bus(flash->spi);