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:
parent
63b87e985c
commit
619c60f94c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue