aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrans Hendriks <fhendriks@eltan.com>2021-02-01 11:52:51 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-02-05 09:42:35 +0000
commit739c080eef55e6c5102cedf45be01be9e856a0fe (patch)
tree6dd8dea1b14142d7b83b8ff70e20fdfd153d56f5
parenta9caa50e8ac08338caf29c8452d624e316e07581 (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>
-rw-r--r--src/device/device.c2
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);
}