diff options
author | Rex-BC Chen <rex-bc.chen@mediatek.com> | 2022-03-14 14:37:44 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-15 19:17:48 +0000 |
commit | 69e3cab7f991acab18a0b39e74a7dbe0c8d26168 (patch) | |
tree | 33dfa5e55b95dff04de6c45f02ee3757f855d773 | |
parent | 129b8ae5515017a7417fbb7c7d0ede482fd4d1a1 (diff) |
soc/mediatek/mt8186: change pmic hwcid from warning to info
The pmic hwcid dumping should not be a warning, so we modify it to info.
BUG=none
TEST=build pass
Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com>
Change-Id: I4a930b69bd45d5f0d84c3d269ca721b287dbadea
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62775
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
-rw-r--r-- | src/soc/mediatek/mt8186/mt6366.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8186/mt6366.c b/src/soc/mediatek/mt8186/mt6366.c index b993a9256a..30ae5e0683 100644 --- a/src/soc/mediatek/mt8186/mt6366.c +++ b/src/soc/mediatek/mt8186/mt6366.c @@ -821,7 +821,7 @@ static void mt6366_lp_setting(void) static void pmic_check_hwcid(void) { - printk(BIOS_WARNING, "%s: ID = %#x\n", __func__, + printk(BIOS_INFO, "%s: ID = %#x\n", __func__, pwrap_read_field(0x8, 0xFFFF, 0)); } |