Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1086cda authored by Ayaz Abdulla's avatar Ayaz Abdulla Committed by David S. Miller
Browse files

forcedeth: ethtool tx csum fix



This patch fixes the ethtool tx csum "set" command. A recent patch was
submitted to remove HW_CSUM and use IP_CSUM instead. Therefore, the
corresponding ethtool command should also be modified.

Signed-off-by: default avatarAyaz Abdulla <aabdulla@nvidia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b6e4405b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4763,7 +4763,7 @@ static int nv_set_tx_csum(struct net_device *dev, u32 data)
	struct fe_priv *np = netdev_priv(dev);

	if (np->driver_data & DEV_HAS_CHECKSUM)
		return ethtool_op_set_tx_hw_csum(dev, data);
		return ethtool_op_set_tx_csum(dev, data);
	else
		return -EOPNOTSUPP;
}