From 586be058f466baeb69062b4abff6d9eca0d6c7fd Mon Sep 17 00:00:00 2001 From: Eric Lai Date: Fri, 22 Apr 2022 13:44:18 +0800 Subject: [PATCH] lib/spd: Demote log about using default DDR4 params to NOTICE Demote log level from error to notice. People should aware the SPD decode might be wrong if it's not the support type. Signed-off-by: Eric Lai Change-Id: I55f0968b78baaa2fc9a6bbebf6712fb8bfd349f6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63774 Tested-by: build bot (Jenkins) Reviewed-by: Kangheui Won Reviewed-by: Frank Wu Reviewed-by: Tim Wawrzynczak Reviewed-by: Subrata Banik --- src/lib/spd_bin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/spd_bin.c b/src/lib/spd_bin.c index 823f717910..0aaaee6e4f 100644 --- a/src/lib/spd_bin.c +++ b/src/lib/spd_bin.c @@ -39,7 +39,7 @@ static bool use_ddr4_params(int dram_type) case SPD_DRAM_LPDDR4X: return true; default: - printk(BIOS_ERR, "Defaulting to using DDR4 params. Please add dram_type check for %d to %s\n", + printk(BIOS_NOTICE, "Defaulting to using DDR4 params. Please add dram_type check for %d to %s\n", dram_type, __func__); return true; }