summaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp2_0/hand_off_block.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-11-14 22:11:56 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-16 15:00:00 +0000
commit50c0a6d675152172d99acc4108a8dc69a3f0daf9 (patch)
treed851eac8b977e3c985f2192a4b2c97fdce4c33cf /src/drivers/intel/fsp2_0/hand_off_block.c
parentc420d538ee4e02d634d01cd30dd6ed5b6dafcc44 (diff)
downloadcoreboot-50c0a6d675152172d99acc4108a8dc69a3f0daf9.tar.gz
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 <felix-coreboot@felixheld.de> Change-Id: I3b37afe703f506d4913f95a954368c0eec0f862d Reviewed-on: https://review.coreboot.org/c/coreboot/+/69599 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/intel/fsp2_0/hand_off_block.c')
-rw-r--r--src/drivers/intel/fsp2_0/hand_off_block.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/intel/fsp2_0/hand_off_block.c b/src/drivers/intel/fsp2_0/hand_off_block.c
index 2ded336994..f0f580b813 100644
--- a/src/drivers/intel/fsp2_0/hand_off_block.c
+++ b/src/drivers/intel/fsp2_0/hand_off_block.c
@@ -190,7 +190,7 @@ enum cb_err fsp_hob_iterator_get_next_guid_extension(const struct hob_header **h
return CB_ERR;
}
-void fsp_print_guid(const void *base)
+void fsp_print_guid(int level, const void *base)
{
uint32_t big;
uint16_t mid[2];
@@ -200,7 +200,7 @@ void fsp_print_guid(const void *base)
mid[0] = read16(id + 4);
mid[1] = read16(id + 6);
- printk(BIOS_SPEW, "%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x",
+ printk(level, "%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x",
big, mid[0], mid[1],
id[8], id[9], id[10], id[11], id[12], id[13], id[14], id[15]);
}
@@ -216,7 +216,7 @@ int fsp_find_range_hob(struct range_entry *re, const uint8_t guid[16])
range_entry_init(re, 0, 0, 0);
if (fsp_hob_iterator_get_next_guid_resource(&hob_iterator, guid, &fsp_mem) != CB_SUCCESS) {
- fsp_print_guid(guid);
+ fsp_print_guid(BIOS_SPEW, guid);
printk(BIOS_SPEW, " not found!\n");
return -1;
}