realtek: 5.15: rtl930x: fix SerDes phy register write
authorTobias Schramm <tobias@t-sys.eu>
Mon, 25 Dec 2023 16:50:26 +0000 (17:50 +0100)
committerSander Vanheule <sander@svanheule.net>
Mon, 5 Feb 2024 19:44:46 +0000 (20:44 +0100)
The indirect SerDes phy register write function was missing the actual
write call. Add it.

Signed-off-by: Tobias Schramm <tobias@t-sys.eu>
target/linux/realtek/files-5.15/drivers/net/phy/rtl83xx-phy.c

index c69a5af4bdefd5bf893761e359f66a42d1134339..4bbcfd90f5cbafe41469ab99d4f852c1e5055cb6 100644 (file)
@@ -274,6 +274,8 @@ int rtl930x_write_sds_phy(int phy_addr, int page, int phy_reg, u16 v)
        sw_w32(v, RTL930X_SDS_INDACS_DATA);
        cmd = phy_addr << 2 | page << 7 | phy_reg << 13 | 0x3;
 
+       sw_w32(cmd, RTL930X_SDS_INDACS_CMD);
+
        for (i = 0; i < 100; i++) {
                if (!(sw_r32(RTL930X_SDS_INDACS_CMD) & 0x1))
                        break;