mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 17:52:07 +02:00
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>
This commit is contained in:
@@ -276,7 +276,6 @@ int store_sparse_image(sparse_storage_t *storage, void *storage_priv,
|
|||||||
sparse_buffer_t *buffer;
|
sparse_buffer_t *buffer;
|
||||||
uint32_t start;
|
uint32_t start;
|
||||||
uint32_t total_blocks = 0;
|
uint32_t total_blocks = 0;
|
||||||
uint32_t skipped = 0;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
debug("=== Storage ===\n");
|
debug("=== Storage ===\n");
|
||||||
@@ -337,7 +336,6 @@ int store_sparse_image(sparse_storage_t *storage, void *storage_priv,
|
|||||||
#ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
|
#ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
|
||||||
total_blocks += blkcnt;
|
total_blocks += blkcnt;
|
||||||
#endif
|
#endif
|
||||||
skipped += blkcnt;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -378,8 +376,8 @@ int store_sparse_image(sparse_storage_t *storage, void *storage_priv,
|
|||||||
sparse_put_data_buffer(buffer);
|
sparse_put_data_buffer(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
debug("Wrote %d blocks, skipped %d, expected to write %d blocks\n",
|
debug("Wrote %d blocks, expected to write %d blocks\n",
|
||||||
total_blocks, skipped,
|
total_blocks,
|
||||||
sparse_block_size_to_storage(sparse_header->total_blks,
|
sparse_block_size_to_storage(sparse_header->total_blks,
|
||||||
storage, sparse_header));
|
storage, sparse_header));
|
||||||
printf("........ wrote %d blocks to '%s'\n", total_blocks,
|
printf("........ wrote %d blocks to '%s'\n", total_blocks,
|
||||||
|
Reference in New Issue
Block a user