summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/common
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/common
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/common')
-rw-r--r--src/soc/mediatek/common/include/soc/regulator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/mediatek/common/include/soc/regulator.h b/src/soc/mediatek/common/include/soc/regulator.h
index 0acf91059d..2ff122637a 100644
--- a/src/soc/mediatek/common/include/soc/regulator.h
+++ b/src/soc/mediatek/common/include/soc/regulator.h
@@ -25,7 +25,7 @@ enum mtk_regulator {
void mainboard_set_regulator_voltage(enum mtk_regulator regulator, uint32_t voltage_uv);
uint32_t mainboard_get_regulator_voltage(enum mtk_regulator regulator);
-int mainboard_enable_regulator(enum mtk_regulator regulator, uint8_t enable);
-uint8_t mainboard_regulator_is_enabled(enum mtk_regulator regulator);
+int mainboard_enable_regulator(enum mtk_regulator regulator, bool enable);
+bool mainboard_regulator_is_enabled(enum mtk_regulator regulator);
#endif /* SOC_MEDIATEK_COMMON_REGULATOR_H */