diff options
author | Frans Hendriks <fhendriks@eltan.com> | 2021-02-01 11:52:51 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-05 09:42:35 +0000 |
commit | 739c080eef55e6c5102cedf45be01be9e856a0fe (patch) | |
tree | 6dd8dea1b14142d7b83b8ff70e20fdfd153d56f5 /src | |
parent | a9caa50e8ac08338caf29c8452d624e316e07581 (diff) |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/device/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device.c b/src/device/device.c index fe1ced5805..18efd5dcd5 100644 --- a/src/device/device.c +++ b/src/device/device.c @@ -284,7 +284,7 @@ void assign_resources(struct bus *bus) curdev->ops->set_resources(curdev); } 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); } |