From f91c59650eef4dcf955077c01af8696fd03c04b4 Mon Sep 17 00:00:00 2001 From: Markus Stockhausen Date: Sun, 3 May 2026 17:25:25 +0200 Subject: [PATCH] realtek: mdio: RTL931x does not need ext_page set Remove the register write. It is never used in the SDK. Signed-off-by: Markus Stockhausen Link: https://github.com/openwrt/openwrt/pull/23204 Signed-off-by: Robert Marko --- .../realtek/files-6.18/drivers/net/mdio/mdio-realtek-otto.c | 1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/realtek/files-6.18/drivers/net/mdio/mdio-realtek-otto.c b/target/linux/realtek/files-6.18/drivers/net/mdio/mdio-realtek-otto.c index 9798ec2a42..0e10720b49 100644 --- a/target/linux/realtek/files-6.18/drivers/net/mdio/mdio-realtek-otto.c +++ b/target/linux/realtek/files-6.18/drivers/net/mdio/mdio-realtek-otto.c @@ -480,7 +480,6 @@ static int rtmdio_931x_write_c22(struct mii_bus *bus, u32 pn, u32 page, u32 reg, { struct rtmdio_931x_smi_access smi_access = { .ctrl_0 = RTMDIO_931X_C22_DATA(page, reg), - .ctrl_1 = 0x1ff, .ctrl_2 = (u32)(BIT_ULL(pn)), .ctrl_x = (u32)(BIT_ULL(pn) >> 32), .ctrl_3 = val,