From 50c0a6d675152172d99acc4108a8dc69a3f0daf9 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Mon, 14 Nov 2022 22:11:56 +0100 Subject: drivers/intel/fsp2_0: add log level parameter to fsp_print_guid Not all functions that call fsp_print_guid print their output with the BIOS_SPEW log level, so introduce a new log level parameter so that the caller of fsp_print_guid can specify which log level fsp_print_guid should use for printing the GUID. Signed-off-by: Felix Held Change-Id: I3b37afe703f506d4913f95a954368c0eec0f862d Reviewed-on: https://review.coreboot.org/c/coreboot/+/69599 Reviewed-by: Eric Lai Reviewed-by: Subrata Banik Reviewed-by: Nikolai Vyssotski Tested-by: build bot (Jenkins) --- src/soc/intel/xeon_sp/skx/hob_display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/intel') diff --git a/src/soc/intel/xeon_sp/skx/hob_display.c b/src/soc/intel/xeon_sp/skx/hob_display.c index efe1038dfb..9c03146ef3 100644 --- a/src/soc/intel/xeon_sp/skx/hob_display.c +++ b/src/soc/intel/xeon_sp/skx/hob_display.c @@ -41,7 +41,7 @@ void soc_display_hob(const struct hob_header *hob) printk(BIOS_DEBUG, "\tResource type: 0x%x, attribute: 0x%x, addr: 0x%08llx, len: 0x%08llx\n", res->type, res->attribute_type, res->addr, res->length); printk(BIOS_DEBUG, "\tOwner GUID: "); - fsp_print_guid(res->owner_guid); + fsp_print_guid(BIOS_DEBUG, res->owner_guid); printk(BIOS_DEBUG, " (%s)\n", fsp_get_guid_name(res->owner_guid)); if (fsp_guid_compare(res->owner_guid, fsp_hob_iio_uds_guid) == 0) -- cgit v1.2.3