soc/mediatek/common/dp: Change dptx_hal_phy_wait_aux_ldo_ready to static

TEST=emerge-rauru coreboot

Change-Id: Ia72960c14426b8412bfb5238fa882d1adcb1d6b3
Signed-off-by: Yidi Lin <yidilin@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/88581
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
This commit is contained in:
Yidi Lin 2025-07-28 11:53:34 +08:00 committed by Yu-Ping Wu
commit 8a45e505b9
2 changed files with 1 additions and 2 deletions

View file

@ -282,7 +282,7 @@ void dptx_hal_swing_emp_reset(struct mtk_dp *mtk_dp)
DP_TX2_PRE_EMPH_MASK | DP_TX3_PRE_EMPH_MASK);
}
void dptx_hal_phy_wait_aux_ldo_ready(struct mtk_dp *mtk_dp)
static void dptx_hal_phy_wait_aux_ldo_ready(struct mtk_dp *mtk_dp)
{
u32 mask = RGS_BG_CORE_EN_READY_MASK | RGS_AUX_LDO_EN_READY_MASK;

View file

@ -21,7 +21,6 @@ extern const int dptx_hal_driving_offset_size;
void dptx_hal_swing_emp_reset(struct mtk_dp *mtk_dp);
void dptx_hal_phy_init(struct mtk_dp *mtk_dp);
void dptx_hal_phy_wait_aux_ldo_ready(struct mtk_dp *mtk_dp);
void dptx_hal_phy_set_idle_pattern(struct mtk_dp *mtk_dp, u8 lane_count, bool enable);
void dptx_hal_phy_set_lanes(struct mtk_dp *mtk_dp, u8 lane_count);