cmd: blkcache: remove indentation from output of 'show'

Signed-off-by: Eric Nelson <eric@nelint.com>
This commit is contained in:
Eric Nelson 2016-04-02 07:37:12 -07:00 committed by Tom Rini
parent 158c9c78a5
commit 7e8721467d

View File

@ -16,11 +16,11 @@ static int blkc_show(cmd_tbl_t *cmdtp, int flag,
struct block_cache_stats stats;
blkcache_stats(&stats);
printf(" hits: %u\n"
" misses: %u\n"
" entries: %u\n"
" max blocks/entry: %u\n"
" max cache entries: %u\n",
printf("hits: %u\n"
"misses: %u\n"
"entries: %u\n"
"max blocks/entry: %u\n"
"max cache entries: %u\n",
stats.hits, stats.misses, stats.entries,
stats.max_blocks_per_entry, stats.max_entries);
return 0;