Skip to content

Commit ec4a1d9

Browse files
shimodayvinodkoul
authored andcommitted
phy: renesas: r8a779f0-eth-serdes: Fix register setting
Fix register setting which is typo in r8a779f0_eth_serdes_chan_setting(). Fixes: 7428594 ("phy: renesas: Add Renesas Ethernet SERDES driver for R-Car S4-8") Signed-off-by: Yoshihiro Shimoda <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 17eee26 commit ec4a1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/phy/renesas/r8a779f0-ether-serdes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ r8a779f0_eth_serdes_chan_setting(struct r8a779f0_eth_serdes_channel *channel)
126126
r8a779f0_eth_serdes_write32(channel->addr, 0x0160, 0x180, 0x0007);
127127
r8a779f0_eth_serdes_write32(channel->addr, 0x01ac, 0x180, 0x0000);
128128
r8a779f0_eth_serdes_write32(channel->addr, 0x00c4, 0x180, 0x0310);
129-
r8a779f0_eth_serdes_write32(channel->addr, 0x00c8, 0x380, 0x0101);
129+
r8a779f0_eth_serdes_write32(channel->addr, 0x00c8, 0x180, 0x0101);
130130
ret = r8a779f0_eth_serdes_reg_wait(channel, 0x00c8, 0x0180, BIT(0), 0);
131131
if (ret)
132132
return ret;

0 commit comments

Comments
 (0)