diff options
author | Eric Nelson <eric@nelint.com> | 2016-04-02 07:37:12 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-04-11 12:44:38 -0400 |
commit | 7e8721467da2e7cf0076533be9b2050cdc22ab1e (patch) | |
tree | 9b88fead9f5de97ab22476583f852c20b4228aab /cmd | |
parent | 158c9c78a50f7f04f4498abe36f8c1be83fafb75 (diff) | |
download | u-boot-imx-7e8721467da2e7cf0076533be9b2050cdc22ab1e.zip u-boot-imx-7e8721467da2e7cf0076533be9b2050cdc22ab1e.tar.gz u-boot-imx-7e8721467da2e7cf0076533be9b2050cdc22ab1e.tar.bz2 |
cmd: blkcache: remove indentation from output of 'show'
Signed-off-by: Eric Nelson <eric@nelint.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/blkcache.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/blkcache.c b/cmd/blkcache.c index 9a619e2..a3dd549 100644 --- a/cmd/blkcache.c +++ b/cmd/blkcache.c @@ -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; |