From 619c60f94cc00251bfaedde4f1764e2f96dcdecd Mon Sep 17 00:00:00 2001 From: Moritz Fischer Date: Fri, 19 Feb 2021 17:56:10 -0800 Subject: soc/rockchip/rk3399/sdram: Remove superfluous parameter Remove extra parameter in phy_dll_bypass_set, since it does not depend on the channel at hand. Signed-off-by: Moritz Fischer Change-Id: Iae09a6053daf58bf12604e1903c754dc9f1e986f Reviewed-on: https://review.coreboot.org/c/coreboot/+/50965 Tested-by: build bot (Jenkins) Reviewed-by: ron minnich Reviewed-by: Paul Menzel --- src/soc/rockchip/rk3399/sdram.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/soc') diff --git a/src/soc/rockchip/rk3399/sdram.c b/src/soc/rockchip/rk3399/sdram.c index 07c149de84..7a9f0ba883 100644 --- a/src/soc/rockchip/rk3399/sdram.c +++ b/src/soc/rockchip/rk3399/sdram.c @@ -114,8 +114,8 @@ static void phy_pctrl_reset(u32 channel) udelay(10); } -static void phy_dll_bypass_set(u32 channel, - struct rk3399_ddr_publ_regs *ddr_publ_regs, u32 freq) +static void phy_dll_bypass_set(struct rk3399_ddr_publ_regs *ddr_publ_regs, + u32 freq) { u32 *denali_phy = ddr_publ_regs->denali_phy; @@ -1115,7 +1115,7 @@ void sdram_init(const struct rk3399_sdram_params *params) for (channel = 0; channel < 2; channel++) { phy_pctrl_reset(channel); - phy_dll_bypass_set(channel, rk3399_ddr_publ[channel], ddr_freq); + phy_dll_bypass_set(rk3399_ddr_publ[channel], ddr_freq); if (channel >= params->num_channels) continue; -- cgit v1.2.3