diff --git a/drivers/core/dump.c b/drivers/core/dump.c index 1cc929203b..89162641f2 100644 --- a/drivers/core/dump.c +++ b/drivers/core/dump.c @@ -34,7 +34,8 @@ static void show_devices(struct udevice *dev, int depth, int last_flag) } } - printf("%s\n", dev->name); + printf("%s %s\n", dev->name, + dev_read_bool(dev, "u-boot,dm-pre-reloc") ? "*" : ""); list_for_each_entry(child, &dev->child_head, sibling_node) { is_last = list_is_last(&child->sibling_node, &dev->child_head);