[U-Boot] [PATCH 1/3] cmd: blkcache: remove indentation from output of 'show'
Eric Nelson
eric at nelint.com
Sat Apr 2 16:37:12 CEST 2016
Signed-off-by: Eric Nelson <eric at nelint.com>
---
cmd/blkcache.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/cmd/blkcache.c b/cmd/blkcache.c
index 725163a..d97bed5 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;
--
2.6.2
More information about the U-Boot
mailing list