diff options
author | Simon Glass <sjg@chromium.org> | 2020-12-16 21:20:31 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-12-18 20:32:21 -0700 |
commit | 36c03d183041e57714a909f6d020ac10ef279e3b (patch) | |
tree | c938aafffd85a255b583539f707162f4ae9dabab /cmd/axi.c | |
parent | a133e2179a729036e7750b497c1c38f9f6a3a835 (diff) | |
download | u-boot-36c03d183041e57714a909f6d020ac10ef279e3b.tar.gz u-boot-36c03d183041e57714a909f6d020ac10ef279e3b.tar.bz2 u-boot-36c03d183041e57714a909f6d020ac10ef279e3b.zip |
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 'cmd/axi.c')
-rw-r--r-- | cmd/axi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,9 +33,9 @@ static void show_bus(struct udevice *bus) { struct udevice *dev; - printf("Bus %d:\t%s", bus->req_seq, bus->name); + printf("Bus %d:\t%s", dev_seq(bus), bus->name); if (device_active(bus)) - printf(" (active %d)", dev_seq(bus)); + printf(" (active)"); printf("\n"); for (device_find_first_child(bus, &dev); dev; |