aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe
diff options
context:
space:
mode:
authorEric Dumazet <eric.dumazet@gmail.com>2010-09-23 01:40:09 -0400
committerDavid S. Miller <davem@davemloft.net>2010-09-26 21:34:29 -0400
commit807540baae406c84dcb9c1c8ef07a56d2d2ae84a (patch)
treeccd5c2cb57710dd6b73cf8df11eedf67abc14ae4 /drivers/net/ixgbe
parentcb4dfe562cac6fcb544df752e40c1d78000d0712 (diff)
drivers/net: return operator cleanup
Change "return (EXPR);" to "return EXPR;" return is not a function, parentheses are not required. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe')
-rw-r--r--drivers/net/ixgbe/ixgbe_ethtool.c6
-rw-r--r--drivers/net/ixgbe/ixgbe_main.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c
index 25ef8b197373..d4ac94324fa0 100644
--- a/drivers/net/ixgbe/ixgbe_ethtool.c
+++ b/drivers/net/ixgbe/ixgbe_ethtool.c
@@ -401,7 +401,7 @@ static int ixgbe_set_pauseparam(struct net_device *netdev,
401static u32 ixgbe_get_rx_csum(struct net_device *netdev) 401static u32 ixgbe_get_rx_csum(struct net_device *netdev)
402{ 402{
403 struct ixgbe_adapter *adapter = netdev_priv(netdev); 403 struct ixgbe_adapter *adapter = netdev_priv(netdev);
404 return (adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED); 404 return adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED;
405} 405}
406 406
407static int ixgbe_set_rx_csum(struct net_device *netdev, u32 data) 407static int ixgbe_set_rx_csum(struct net_device *netdev, u32 data)
@@ -988,8 +988,8 @@ static int ixgbe_get_sset_count(struct net_device *netdev, int sset)
988 case ETH_SS_STATS: 988 case ETH_SS_STATS:
989 return IXGBE_STATS_LEN; 989 return IXGBE_STATS_LEN;
990 case ETH_SS_NTUPLE_FILTERS: 990 case ETH_SS_NTUPLE_FILTERS:
991 return (ETHTOOL_MAX_NTUPLE_LIST_ENTRY * 991 return ETHTOOL_MAX_NTUPLE_LIST_ENTRY *
992 ETHTOOL_MAX_NTUPLE_STRING_PER_ENTRY); 992 ETHTOOL_MAX_NTUPLE_STRING_PER_ENTRY;
993 default: 993 default:
994 return -EOPNOTSUPP; 994 return -EOPNOTSUPP;
995 } 995 }
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index 0ec4ef2d819e..4e0ce91321dd 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -826,7 +826,7 @@ static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
826 tx_ring->total_packets += total_packets; 826 tx_ring->total_packets += total_packets;
827 tx_ring->stats.packets += total_packets; 827 tx_ring->stats.packets += total_packets;
828 tx_ring->stats.bytes += total_bytes; 828 tx_ring->stats.bytes += total_bytes;
829 return (count < tx_ring->work_limit); 829 return count < tx_ring->work_limit;
830} 830}
831 831
832#ifdef CONFIG_IXGBE_DCA 832#ifdef CONFIG_IXGBE_DCA