aboutsummaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorSimon Glass2020-12-16 21:20:31 -0700
committerSimon Glass2020-12-18 20:32:21 -0700
commit36c03d183041e57714a909f6d020ac10ef279e3b (patch)
treec938aafffd85a255b583539f707162f4ae9dabab /drivers/core
parenta133e2179a729036e7750b497c1c38f9f6a3a835 (diff)
cmd: Drop use of old sequence numbers in commands
Several commands use sequence numbers. Update them to use the new ones. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/core/dump.c b/drivers/core/dump.c
index 33cfee6c762..20125473212 100644
--- a/drivers/core/dump.c
+++ b/drivers/core/dump.c
@@ -67,8 +67,8 @@ static void dm_display_line(struct udevice *dev, int index)
printf("%-3i %c %s @ %08lx", index,
dev->flags & DM_FLAG_ACTIVATED ? '*' : ' ',
dev->name, (ulong)map_to_sysmem(dev));
- if (dev_seq(dev) != -1 || dev->req_seq != -1)
- printf(", seq %d, (req %d)", dev_seq(dev), dev->req_seq);
+ if (dev->sqq != -1)
+ printf(", seq %d", dev_seq(dev));
puts("\n");
}