aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/igbvf/ethtool.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/igbvf/ethtool.c')
-rw-r--r--drivers/net/igbvf/ethtool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/igbvf/ethtool.c b/drivers/net/igbvf/ethtool.c
index 103b3aa1afc2..33add708bcbe 100644
--- a/drivers/net/igbvf/ethtool.c
+++ b/drivers/net/igbvf/ethtool.c
@@ -153,7 +153,7 @@ static int igbvf_set_rx_csum(struct net_device *netdev, u32 data)
153 153
154static u32 igbvf_get_tx_csum(struct net_device *netdev) 154static u32 igbvf_get_tx_csum(struct net_device *netdev)
155{ 155{
156 return ((netdev->features & NETIF_F_IP_CSUM) != 0); 156 return (netdev->features & NETIF_F_IP_CSUM) != 0;
157} 157}
158 158
159static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) 159static int igbvf_set_tx_csum(struct net_device *netdev, u32 data)