device/device.c: Print done at end of assign_resources()
First and last printk() log the same string. Add done at end of function. BUG = N/A TEST = Build and boot faceboot FBG1701 Change-Id: I66a64c7473a65206c3a4c4396c8c8ecba1eb1a57 Signed-off-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50189 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
a9caa50e8a
commit
739c080eef
|
@ -284,7 +284,7 @@ void assign_resources(struct bus *bus)
|
||||||
curdev->ops->set_resources(curdev);
|
curdev->ops->set_resources(curdev);
|
||||||
}
|
}
|
||||||
post_log_clear();
|
post_log_clear();
|
||||||
printk(BIOS_SPEW, "%s %s, bus %d link: %d\n",
|
printk(BIOS_SPEW, "%s %s, bus %d link: %d done\n",
|
||||||
dev_path(bus->dev), __func__, bus->secondary, bus->link_num);
|
dev_path(bus->dev), __func__, bus->secondary, bus->link_num);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue