diff options
author | Arnd Bergmann <arnd@arndb.de> | 2024-04-03 10:06:23 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-04-06 07:10:59 +0200 |
commit | 17b35355c2c6a761eaf571d63dab7f06b62249fb (patch) | |
tree | 440f6034c8a1f5f2e84a965b5c795b7e36f16073 /drivers/net/ethernet/3com/3c515.c | |
parent | trace: events: cleanup deprecated strncpy uses (diff) | |
download | linux-17b35355c2c6a761eaf571d63dab7f06b62249fb.tar.xz linux-17b35355c2c6a761eaf571d63dab7f06b62249fb.zip |
3c515: remove unused 'mtu' variable
This has never been used since the start of the git history. When building
with W=1, the unused variable produces a gcc warning:
drivers/net/ethernet/3com/3c515.c:35:18: error: 'mtu' defined but not used [-Werror=unused-const-variable=]
Just remove it.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20240403080702.3509288-6-arnd@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/ethernet/3com/3c515.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ethernet/3com/3c515.c b/drivers/net/ethernet/3com/3c515.c index ba3e7aa1a28f..4725a8cfd695 100644 --- a/drivers/net/ethernet/3com/3c515.c +++ b/drivers/net/ethernet/3com/3c515.c @@ -31,9 +31,6 @@ Setting to > 1512 effectively disables this feature. */ static int rx_copybreak = 200; -/* Allow setting MTU to a larger size, bypassing the normal ethernet setup. */ -static const int mtu = 1500; - /* Maximum events (Rx packets, etc.) to handle at each interrupt. */ static int max_interrupt_work = 20; |