diff options
Diffstat (limited to 'drivers/net/igbvf/ethtool.c')
-rw-r--r-- | drivers/net/igbvf/ethtool.c | 2 |
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 | ||
154 | static u32 igbvf_get_tx_csum(struct net_device *netdev) | 154 | static 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 | ||
159 | static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) | 159 | static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) |