diff mbox

[3/5] forcedeth: ethtool tx csum fix

Message ID 49834D63.9080902@nvidia.com
State Changes Requested, archived
Delegated to: David Miller
Headers show

Commit Message

Ayaz Abdulla Jan. 30, 2009, 6:56 p.m. UTC
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: Ayaz Abdulla <aabdulla@nvidia.com>
diff mbox

Patch

--- old/drivers/net/forcedeth.c	2009-01-30 13:32:20.000000000 -0500
+++ new/drivers/net/forcedeth.c	2009-01-30 13:32:37.000000000 -0500
@@ -4750,7 +4750,7 @@ 
 	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;
 }