sf: fix erase debug output

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>
This commit is contained in:
Vadim Bendebury 2011-10-12 11:28:38 +00:00 committed by Anatolij Gustschin
parent 7708d8b352
commit 1f6734cf50
1 changed files with 1 additions and 2 deletions

View File

@ -233,8 +233,7 @@ int spi_flash_cmd_erase(struct spi_flash *flash, u8 erase_cmd,
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);