diff options
author | Steve Rae <srae@broadcom.com> | 2016-02-09 11:19:11 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-04-11 20:48:29 -0400 |
commit | e3793541b15d631476e91343a21c5b23b19c9da8 (patch) | |
tree | 89f85b7296c516d8a56c24b6ce340f4e5219ad49 /common/image-sparse.c | |
parent | c7529dbad1722bd6d6ef2a0af0e818902a296d64 (diff) |
fastboot: sparse: remove unnecessary logging
remove logging of the 'skipped' blocks
Signed-off-by: Steve Rae <srae@broadcom.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'common/image-sparse.c')
-rw-r--r-- | common/image-sparse.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/common/image-sparse.c b/common/image-sparse.c index e0d87617c97..2bf737b46c2 100644 --- a/common/image-sparse.c +++ b/common/image-sparse.c @@ -276,7 +276,6 @@ int store_sparse_image(sparse_storage_t *storage, void *storage_priv, sparse_buffer_t *buffer; uint32_t start; uint32_t total_blocks = 0; - uint32_t skipped = 0; int i; debug("=== Storage ===\n"); @@ -337,7 +336,6 @@ int store_sparse_image(sparse_storage_t *storage, void *storage_priv, #ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV total_blocks += blkcnt; #endif - skipped += blkcnt; continue; } @@ -378,8 +376,8 @@ int store_sparse_image(sparse_storage_t *storage, void *storage_priv, sparse_put_data_buffer(buffer); } - debug("Wrote %d blocks, skipped %d, expected to write %d blocks\n", - total_blocks, skipped, + debug("Wrote %d blocks, expected to write %d blocks\n", + total_blocks, sparse_block_size_to_storage(sparse_header->total_blks, storage, sparse_header)); printf("........ wrote %d blocks to '%s'\n", total_blocks, |