summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8195
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.com>2022-07-20 11:35:57 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-07-21 10:33:22 +0000
commitc5d4d964f1728dad5a60d84b8ee0febe0426678b (patch)
treee6418c4f4bcf1e36f4ca34d7828ab218c4666ee1 /src/soc/mediatek/mt8195
parentd5dafb2c0a6bac5c9d87f0e07e339570e0fd3267 (diff)
mb/google: Use boolean type for "enable" argument for regulator
Because 0 and 1 are the only possible values, 1. Change input argument "enable" of mainboard_enable_regulator to bool. 2. Change return value of mainboard_regulator_is_enabled() to bool. TEST=build pass BUG=b:233720142 Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: Iae09c5fedf8f7394bfbb677e5aee37ed061304fd Reviewed-on: https://review.coreboot.org/c/coreboot/+/65997 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/mt8195')
-rw-r--r--src/soc/mediatek/mt8195/msdc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/mediatek/mt8195/msdc.c b/src/soc/mediatek/mt8195/msdc.c
index bbfeaa6c81..5f75c6444e 100644
--- a/src/soc/mediatek/mt8195/msdc.c
+++ b/src/soc/mediatek/mt8195/msdc.c
@@ -103,6 +103,6 @@ void mtk_msdc_configure_sdcard(void)
if (CONFIG(BOARD_GOOGLE_CHERRY))
mt6360_init(I2C7);
- mainboard_enable_regulator(MTK_REGULATOR_VCCQ, 1);
- mainboard_enable_regulator(MTK_REGULATOR_VCC, 1);
+ mainboard_enable_regulator(MTK_REGULATOR_VCCQ, true);
+ mainboard_enable_regulator(MTK_REGULATOR_VCC, true);
}