Commit 95fec168 authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller

atl1e: Remove redundant definitions of ethtool operations

These functions provide the default behaviour and do not need to be
set in struct ethtool_ops.
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ac936929
...@@ -131,11 +131,6 @@ static int atl1e_set_settings(struct net_device *netdev, ...@@ -131,11 +131,6 @@ static int atl1e_set_settings(struct net_device *netdev,
return 0; return 0;
} }
static u32 atl1e_get_tx_csum(struct net_device *netdev)
{
return (netdev->features & NETIF_F_HW_CSUM) != 0;
}
static u32 atl1e_get_msglevel(struct net_device *netdev) static u32 atl1e_get_msglevel(struct net_device *netdev)
{ {
#ifdef DBG #ifdef DBG
...@@ -393,13 +388,8 @@ static const struct ethtool_ops atl1e_ethtool_ops = { ...@@ -393,13 +388,8 @@ static const struct ethtool_ops atl1e_ethtool_ops = {
.get_eeprom_len = atl1e_get_eeprom_len, .get_eeprom_len = atl1e_get_eeprom_len,
.get_eeprom = atl1e_get_eeprom, .get_eeprom = atl1e_get_eeprom,
.set_eeprom = atl1e_set_eeprom, .set_eeprom = atl1e_set_eeprom,
.get_tx_csum = atl1e_get_tx_csum,
.set_tx_csum = ethtool_op_set_tx_hw_csum, .set_tx_csum = ethtool_op_set_tx_hw_csum,
.get_sg = ethtool_op_get_sg,
.set_sg = ethtool_op_set_sg, .set_sg = ethtool_op_set_sg,
#ifdef NETIF_F_TSO
.get_tso = ethtool_op_get_tso,
#endif
.set_tso = ethtool_op_set_tso, .set_tso = ethtool_op_set_tso,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment