diff mbox

[U-Boot,1/3] cmd: blkcache: remove indentation from output of 'show'

Message ID 1459607834-5454-2-git-send-email-eric@nelint.com
State Accepted
Commit 7e8721467da2e7cf0076533be9b2050cdc22ab1e
Delegated to: Tom Rini
Headers show

Commit Message

Eric Nelson April 2, 2016, 2:37 p.m. UTC
Signed-off-by: Eric Nelson <eric@nelint.com>
---
 cmd/blkcache.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Comments

Tom Rini April 12, 2016, 2:28 a.m. UTC | #1
On Sat, Apr 02, 2016 at 07:37:12AM -0700, Eric Nelson wrote:

> Signed-off-by: Eric Nelson <eric@nelint.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

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;