commit | b7d665705ebb29f06616b7f365ab8732e9779bf6 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Wed Jul 23 06:55:13 2014 -0600 |
committer | Simon Glass <sjg@chromium.org> | Wed Jul 23 14:07:25 2014 +0100 |
tree | 2fc643df6d78681ef796945b8923f6409224e363 | |
parent | 5a66a8ff86d923367ca9a1f6168e976fbde27391 [diff] [blame] |
dm: Display the sequence number for each device Add this information to 'dm tree' and 'dm uclass' commands. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/test/dm/cmd_dm.c b/test/dm/cmd_dm.c index 93e5255..26980d2 100644 --- a/test/dm/cmd_dm.c +++ b/test/dm/cmd_dm.c
@@ -29,6 +29,8 @@ printf("%s- %c %s @ %08lx", buf, dev->flags & DM_FLAG_ACTIVATED ? '*' : ' ', dev->name, (ulong)map_to_sysmem(dev)); + if (dev->req_seq != -1) + printf(", %d", dev->req_seq); puts("\n"); }