summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSteve Rae <srae@broadcom.com>2016-02-09 11:19:11 -0800
committerTom Rini <trini@konsulko.com>2016-04-11 20:48:29 -0400
commite3793541b15d631476e91343a21c5b23b19c9da8 (patch)
tree89f85b7296c516d8a56c24b6ce340f4e5219ad49 /common
parentc7529dbad1722bd6d6ef2a0af0e818902a296d64 (diff)
downloadtalos-obmc-uboot-e3793541b15d631476e91343a21c5b23b19c9da8.tar.gz
talos-obmc-uboot-e3793541b15d631476e91343a21c5b23b19c9da8.zip
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')
-rw-r--r--common/image-sparse.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/common/image-sparse.c b/common/image-sparse.c
index e0d87617c9..2bf737b46c 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,
OpenPOWER on IntegriCloud