diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-22 16:43:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-23 17:33:39 -0400 |
commit | a02cec2155fbea457eca8881870fd2de1a4c4c76 (patch) | |
tree | cfbfc4b32bfe10f9cd803d46c31607d13f1858f5 /include/linux/netdevice.h | |
parent | 6a08d194ee40806e0ccd5f36ed768e64cbfc979f (diff) |
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 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index f7f1302138af..45dcda5bfda9 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1676,7 +1676,7 @@ static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index) | |||
1676 | */ | 1676 | */ |
1677 | static inline int netif_is_multiqueue(const struct net_device *dev) | 1677 | static inline int netif_is_multiqueue(const struct net_device *dev) |
1678 | { | 1678 | { |
1679 | return (dev->num_tx_queues > 1); | 1679 | return dev->num_tx_queues > 1; |
1680 | } | 1680 | } |
1681 | 1681 | ||
1682 | extern void netif_set_real_num_tx_queues(struct net_device *dev, | 1682 | extern void netif_set_real_num_tx_queues(struct net_device *dev, |