summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/common/include
diff options
context:
space:
mode:
authorYu-Ping Wu <yupingso@chromium.org>2024-11-20 15:30:35 +0800
committerYu-Ping Wu <yupingso@google.com>2024-11-21 16:13:42 +0000
commit4ed67d92eb821632087f364b4f925078a4383212 (patch)
treef1d58f73cb78f649038f3f165465100493124d2c /src/soc/mediatek/common/include
parent3d79bced9549922c8c4a8611327818c32d4feda5 (diff)
soc/mediatek: Rename pmif_ulposc_* function arguments
Rename the arguments of pmif_ulposc_check() and pmif_ulposc_cali() to make the frequency unit clearer. Change-Id: I7719fd4dc43edd47bf014af13fb57ad38f43778c Signed-off-by: Yu-Ping Wu <yupingso@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/85203 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yidi Lin <yidilin@google.com>
Diffstat (limited to 'src/soc/mediatek/common/include')
-rw-r--r--src/soc/mediatek/common/include/soc/pmif_clk_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/mediatek/common/include/soc/pmif_clk_common.h b/src/soc/mediatek/common/include/soc/pmif_clk_common.h
index c61cd1a96e..dc03bfc1d6 100644
--- a/src/soc/mediatek/common/include/soc/pmif_clk_common.h
+++ b/src/soc/mediatek/common/include/soc/pmif_clk_common.h
@@ -3,7 +3,7 @@
#ifndef __MEDIATEK_SOC_PMIF_CLK_COMMON__
#define __MEDIATEK_SOC_PMIF_CLK_COMMON__
-int pmif_ulposc_check(u32 current_clk, u32 target_clk);
-int pmif_ulposc_cali(u32 target_val);
+int pmif_ulposc_check(u32 current_clk_mhz, u32 target_clk_mhz);
+int pmif_ulposc_cali(u32 target_freq_mhz);
#endif /*__MEDIATEK_SOC_PMIF_CLK_COMMON__*/