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 <moritzf@google.com>
Change-Id: Iae09a6053daf58bf12604e1903c754dc9f1e986f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50965
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: ron minnich <rminnich@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Moritz Fischer 2021-02-19 17:56:10 -08:00 committed by Patrick Georgi
parent 63b87e985c
commit 619c60f94c
1 changed files with 3 additions and 3 deletions

View File

@ -114,8 +114,8 @@ static void phy_pctrl_reset(u32 channel)
udelay(10); udelay(10);
} }
static void phy_dll_bypass_set(u32 channel, static void phy_dll_bypass_set(struct rk3399_ddr_publ_regs *ddr_publ_regs,
struct rk3399_ddr_publ_regs *ddr_publ_regs, u32 freq) u32 freq)
{ {
u32 *denali_phy = ddr_publ_regs->denali_phy; 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++) { for (channel = 0; channel < 2; channel++) {
phy_pctrl_reset(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) if (channel >= params->num_channels)
continue; continue;