summaryrefslogtreecommitdiff
path: root/src/mainboard/google/cherry
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.com>2022-07-20 10:22:53 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-07-21 10:30:57 +0000
commitd5dafb2c0a6bac5c9d87f0e07e339570e0fd3267 (patch)
tree9a1efa4a808f6f9c97343c2cd32e2b073d2ea96e /src/mainboard/google/cherry
parent8ba3e34f18f041b231acfae10b6e4cc2533532da (diff)
mb/google: Replace some strings in regulator.c
From comments of CB:65875, we replace *_vol to *_voltage. s/mainboard_set_regulator_vol/mainboard_set_regulator_voltage/ s/mainboard_get_regulator_vol/mainboard_get_regulator_voltage/ TEST=build pass BUG=b:233720142 Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: Iadf0408e8914d6e32915464f93979978c4634eaf Reviewed-on: https://review.coreboot.org/c/coreboot/+/65994 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/mainboard/google/cherry')
-rw-r--r--src/mainboard/google/cherry/regulator.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mainboard/google/cherry/regulator.c b/src/mainboard/google/cherry/regulator.c
index f157ae61dc..12de049e98 100644
--- a/src/mainboard/google/cherry/regulator.c
+++ b/src/mainboard/google/cherry/regulator.c
@@ -51,8 +51,7 @@ static int check_regulator_control(enum mtk_regulator regulator)
return 0;
}
-void mainboard_set_regulator_vol(enum mtk_regulator regulator,
- uint32_t voltage_uv)
+void mainboard_set_regulator_voltage(enum mtk_regulator regulator, uint32_t voltage_uv)
{
if (check_regulator_control(regulator) < 0)
return;
@@ -89,7 +88,7 @@ void mainboard_set_regulator_vol(enum mtk_regulator regulator,
printk(BIOS_ERR, "Invalid regulator ID: %d\n", regulator);
}
-uint32_t mainboard_get_regulator_vol(enum mtk_regulator regulator)
+uint32_t mainboard_get_regulator_voltage(enum mtk_regulator regulator)
{
if (check_regulator_control(regulator) < 0)
return 0;