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>
diff --git a/src/device/device.c b/src/device/device.c
index fe1ced5..18efd5d 100644
--- a/src/device/device.c
+++ b/src/device/device.c
@@ -284,7 +284,7 @@
 		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);
 }