summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-03-25 12:23:03 -0600
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:30 -0600
commitb66c0a662b29127bc67f1a70b38ea0966c32ec90 (patch)
tree540ea176782e5e5a2eba572ff743b1df5f849d1b /test
parentaacef256013b40d0a92c9f574e9702034d7618b4 (diff)
downloadtalos-obmc-uboot-b66c0a662b29127bc67f1a70b38ea0966c32ec90.tar.gz
talos-obmc-uboot-b66c0a662b29127bc67f1a70b38ea0966c32ec90.zip
dm: test: Correct printf() output nit in 'dm uclass'
Neither the hyphen nor the equals sign is needed. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'test')
-rw-r--r--test/dm/cmd_dm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/cmd_dm.c b/test/dm/cmd_dm.c
index 8d531fd5cb..62e065c26a 100644
--- a/test/dm/cmd_dm.c
+++ b/test/dm/cmd_dm.c
@@ -79,7 +79,7 @@ static void dm_display_line(struct udevice *dev)
dev->flags & DM_FLAG_ACTIVATED ? '*' : ' ',
dev->name, (ulong)map_to_sysmem(dev));
if (dev->seq != -1 || dev->req_seq != -1)
- printf(", seq-%d, (req=%d)", dev->seq, dev->req_seq);
+ printf(", seq %d, (req %d)", dev->seq, dev->req_seq);
puts("\n");
}
OpenPOWER on IntegriCloud