Paul Menzel has uploaded this change for review. ( 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 --- M src/soc/amd/mendocino/fsp_misc_data_hob.c 1 file changed, 15 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/74271/1
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;