diff mbox series

net: lantiq: Do not use eth_change_mtu()

Message ID 20190222191257.28273-1-hauke@hauke-m.de
State Accepted
Delegated to: David Miller
Headers show
Series net: lantiq: Do not use eth_change_mtu() | expand

Commit Message

Hauke Mehrtens Feb. 22, 2019, 7:12 p.m. UTC
eth_change_mtu() is not needed any more, the networking subsystem will
call it automatically when this callback is not implemented.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 drivers/net/ethernet/lantiq_xrx200.c | 1 -
 1 file changed, 1 deletion(-)

Comments

David Miller Feb. 25, 2019, 1:35 a.m. UTC | #1
From: Hauke Mehrtens <hauke@hauke-m.de>
Date: Fri, 22 Feb 2019 20:12:57 +0100

> eth_change_mtu() is not needed any more, the networking subsystem will
> call it automatically when this callback is not implemented.
> 
> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

Applied to net-next.
diff mbox series

Patch

diff --git a/drivers/net/ethernet/lantiq_xrx200.c b/drivers/net/ethernet/lantiq_xrx200.c
index 2d4d10a017e5..d29104de0d53 100644
--- a/drivers/net/ethernet/lantiq_xrx200.c
+++ b/drivers/net/ethernet/lantiq_xrx200.c
@@ -335,7 +335,6 @@  static const struct net_device_ops xrx200_netdev_ops = {
 	.ndo_start_xmit		= xrx200_start_xmit,
 	.ndo_set_mac_address	= eth_mac_addr,
 	.ndo_validate_addr	= eth_validate_addr,
-	.ndo_change_mtu		= eth_change_mtu,
 };
 
 static irqreturn_t xrx200_dma_irq(int irq, void *ptr)