Skip to content
Snippets Groups Projects
Commit b7d66570 authored by Simon Glass's avatar Simon Glass
Browse files

dm: Display the sequence number for each device


Add this information to 'dm tree' and 'dm uclass' commands.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 5a66a8ff
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,8 @@ static void dm_display_line(struct udevice *dev, char *buf)
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");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment