[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240614145231.13322-1-kheib@redhat.com>
Date: Fri, 14 Jun 2024 10:52:31 -0400
From: Kamal Heib <kheib@...hat.com>
To: netdev@...r.kernel.org
Cc: "David S . Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Kamal Heib <kheib@...hat.com>
Subject: [PATCH net-next] net: sun3lance: Remove redundant assignment
There is no point in initializing an ndo to NULL, therefore the
assignment is redundant and can be removed.
Signed-off-by: Kamal Heib <kheib@...hat.com>
---
drivers/net/ethernet/amd/sun3lance.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/net/ethernet/amd/sun3lance.c b/drivers/net/ethernet/amd/sun3lance.c
index 246f34c43765..fe12051d8471 100644
--- a/drivers/net/ethernet/amd/sun3lance.c
+++ b/drivers/net/ethernet/amd/sun3lance.c
@@ -296,7 +296,6 @@ static const struct net_device_ops lance_netdev_ops = {
.ndo_stop = lance_close,
.ndo_start_xmit = lance_start_xmit,
.ndo_set_rx_mode = set_multicast_list,
- .ndo_set_mac_address = NULL,
.ndo_validate_addr = eth_validate_addr,
};
--
2.45.2
Powered by blists - more mailing lists