提交 e3793541 编写于 作者: S Steve Rae 提交者: Tom Rini

fastboot: sparse: remove unnecessary logging

remove logging of the 'skipped' blocks
Signed-off-by: NSteve Rae <srae@broadcom.com>
Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
上级 c7529dba
......@@ -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,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册