aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2009-12-01 19:10:18 +0000
committerDavid S. Miller <davem@davemloft.net>2009-12-02 22:10:16 -0800
commit650de8de16aa7c168c34d1b6a3191e4a5e2648c8 (patch)
tree07b4b203257567f0307ccac0d1e8680f528c7c8b
parentatl1e: Remove redundant definitions of ethtool operations (diff)
downloadlinux-dev-650de8de16aa7c168c34d1b6a3191e4a5e2648c8.tar.xz
linux-dev-650de8de16aa7c168c34d1b6a3191e4a5e2648c8.zip
atl1e: Remove non-implementation of ethtool set_msglevel() operation
Unimplemented operations should not silently fail. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/atl1e/atl1e_ethtool.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/atl1e/atl1e_ethtool.c b/drivers/net/atl1e/atl1e_ethtool.c
index bb15c51b9180..a76006c1bc6b 100644
--- a/drivers/net/atl1e/atl1e_ethtool.c
+++ b/drivers/net/atl1e/atl1e_ethtool.c
@@ -140,10 +140,6 @@ static u32 atl1e_get_msglevel(struct net_device *netdev)
#endif
}
-static void atl1e_set_msglevel(struct net_device *netdev, u32 data)
-{
-}
-
static int atl1e_get_regs_len(struct net_device *netdev)
{
return AT_REGS_LEN * sizeof(u32);
@@ -382,7 +378,6 @@ static const struct ethtool_ops atl1e_ethtool_ops = {
.get_wol = atl1e_get_wol,
.set_wol = atl1e_set_wol,
.get_msglevel = atl1e_get_msglevel,
- .set_msglevel = atl1e_set_msglevel,
.nway_reset = atl1e_nway_reset,
.get_link = ethtool_op_get_link,
.get_eeprom_len = atl1e_get_eeprom_len,