From 2efcafa7b05a84d72615108bc1a771fdba3cfe1c Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 2 Jul 2021 17:39:45 +0200 Subject: device/resource_allocator_v4: Only highlight log message with === Currently, four instead of three = are used in one log message. Done reading resources. ==== Resource allocator: DOMAIN: 0000 - Pass 1 (gathering requirements) === === Resource allocator: DOMAIN: 0000 - Pass 2 (allocating resources) === As the ending mark is `===` change it to `===` in the beginning. Done reading resources. === Resource allocator: DOMAIN: 0000 - Pass 1 (gathering requirements) === === Resource allocator: DOMAIN: 0000 - Pass 2 (allocating resources) === Change-Id: I40c3876e1f895b7f9771479234c9529cca2b97ba Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/56045 Reviewed-by: Furquan Shaikh Tested-by: build bot (Jenkins) --- src/device/resource_allocator_v4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/device/resource_allocator_v4.c') diff --git a/src/device/resource_allocator_v4.c b/src/device/resource_allocator_v4.c index 3a1103262957..b94c295edcda 100644 --- a/src/device/resource_allocator_v4.c +++ b/src/device/resource_allocator_v4.c @@ -670,7 +670,7 @@ void allocate_resources(const struct device *root) post_log_path(child); /* Pass 1 - Gather requirements. */ - printk(BIOS_INFO, "==== Resource allocator: %s - Pass 1 (gathering requirements) ===\n", + printk(BIOS_INFO, "=== Resource allocator: %s - Pass 1 (gathering requirements) ===\n", dev_path(child)); compute_domain_resources(child); -- cgit v1.2.3