Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/74271 )
Change subject: soc/amd/mendocino: Lower log level for TDP value to DEBUG ......................................................................
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 pmenzel@molgen.mpg.de Reviewed-on: https://review.coreboot.org/c/coreboot/+/74271 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Tim Van Patten timvp@google.com --- M src/soc/amd/mendocino/fsp_misc_data_hob.c 1 file changed, 18 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Tim Van Patten: Looks good to me, approved
diff --git a/src/soc/amd/mendocino/fsp_misc_data_hob.c b/src/soc/amd/mendocino/fsp_misc_data_hob.c index 3b51fd8..ed35800 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 @@ * 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;