diff mbox

[U-Boot,v2,75/80] dm: test: Correct printf() output nit in 'dm uclass'

Message ID 1427307788-7496-76-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass March 25, 2015, 6:23 p.m. UTC
Neither the hyphen nor the equals sign is needed.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v2: None

 test/dm/cmd_dm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass April 7, 2015, 7:12 p.m. UTC | #1
On 25 March 2015 at 12:23, Simon Glass <sjg@chromium.org> wrote:
> Neither the hyphen nor the equals sign is needed.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
> Changes in v2: None
>
>  test/dm/cmd_dm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to u-boot-dm/next.
diff mbox

Patch

diff --git a/test/dm/cmd_dm.c b/test/dm/cmd_dm.c
index 8d531fd..62e065c 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");
 }