[openwrt/openwrt] ipq40xx: eth: Fix PHY access over ipqess driver
LEDE Commits
lede-commits at lists.infradead.org
Sun Jul 28 14:58:09 PDT 2024
hauke pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/2e064182bf1421ce00ffbfb79d147d92db4ea939
commit 2e064182bf1421ce00ffbfb79d147d92db4ea939
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Thu Jul 25 22:13:35 2024 +0200
ipq40xx: eth: Fix PHY access over ipqess driver
.ndo_do_ioctl is not called any more. For PHY MII ioctl handling, the
kernel calls .ndo_eth_ioctl now.
See upstream Linux kernel commit:
https://git.kernel.org/linus/a76053707dbf0dc020a73b4d90cd952409ef3691
Link: https://github.com/openwrt/openwrt/pull/16005
(cherry picked from commit f0bb25aba2ded7bad98188cebe46efff4baa090f)
Link: https://github.com/openwrt/openwrt/pull/16023
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
.../linux/ipq40xx/files/drivers/net/ethernet/qualcomm/ipqess/ipqess.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/linux/ipq40xx/files/drivers/net/ethernet/qualcomm/ipqess/ipqess.c b/target/linux/ipq40xx/files/drivers/net/ethernet/qualcomm/ipqess/ipqess.c
index ee33bb0166..b598343cef 100644
--- a/target/linux/ipq40xx/files/drivers/net/ethernet/qualcomm/ipqess/ipqess.c
+++ b/target/linux/ipq40xx/files/drivers/net/ethernet/qualcomm/ipqess/ipqess.c
@@ -950,7 +950,7 @@ static const struct net_device_ops ipqess_axi_netdev_ops = {
.ndo_uninit = ipqess_uninit,
.ndo_open = ipqess_open,
.ndo_stop = ipqess_stop,
- .ndo_do_ioctl = ipqess_do_ioctl,
+ .ndo_eth_ioctl = ipqess_do_ioctl,
.ndo_start_xmit = ipqess_xmit,
.ndo_get_stats = ipqess_get_stats,
.ndo_set_mac_address = ipqess_set_mac_address,
More information about the lede-commits
mailing list