From 6e4102bc9dd71aa68c4f96ed3482a315095f2318 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 6 Apr 2023 20:07:12 +0200 Subject: [PATCH] soc/amd/mendocino: Lower log level for TDP value to DEBUG Printing the value of a variable is not informative for a normal user, so decrease the value from BIOS_INFO to BIOS_DEBUG. Fixes: b9caac74a320 ("soc/amd/mendocino: Reinterpret smu_power_and_thm_limit") Change-Id: I22f6293fd47633dfdbdae37b7257f47a5a4bb29c Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/74271 Tested-by: build bot (Jenkins) Reviewed-by: Tim Van Patten --- src/soc/amd/mendocino/fsp_misc_data_hob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/amd/mendocino/fsp_misc_data_hob.c b/src/soc/amd/mendocino/fsp_misc_data_hob.c index 3b51fd84c1..ed35800052 100644 --- a/src/soc/amd/mendocino/fsp_misc_data_hob.c +++ b/src/soc/amd/mendocino/fsp_misc_data_hob.c @@ -48,7 +48,7 @@ enum cb_err get_amd_smu_reported_tdp(uint32_t *tdp) * we're interested in. For example: 0xF0000 (15W), 0x60000 (6W). Re-interpret * the value so the caller just sees the TDP. */ - printk(BIOS_INFO, "fsp_misc_data->smu_power_and_thm_limit = 0x%08X\n", + printk(BIOS_DEBUG, "fsp_misc_data->smu_power_and_thm_limit = 0x%08X\n", fsp_misc_data->smu_power_and_thm_limit); *tdp = fsp_misc_data->smu_power_and_thm_limit >> 16;