diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-23 01:40:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-26 21:34:29 -0400 |
commit | 807540baae406c84dcb9c1c8ef07a56d2d2ae84a (patch) | |
tree | ccd5c2cb57710dd6b73cf8df11eedf67abc14ae4 /drivers/net/veth.c | |
parent | cb4dfe562cac6fcb544df752e40c1d78000d0712 (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/veth.c')
-rw-r--r-- | drivers/net/veth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/veth.c b/drivers/net/veth.c index 5ec542dd5b50..0bbc0c323135 100644 --- a/drivers/net/veth.c +++ b/drivers/net/veth.c | |||
@@ -250,7 +250,7 @@ static int veth_close(struct net_device *dev) | |||
250 | 250 | ||
251 | static int is_valid_veth_mtu(int new_mtu) | 251 | static int is_valid_veth_mtu(int new_mtu) |
252 | { | 252 | { |
253 | return (new_mtu >= MIN_MTU && new_mtu <= MAX_MTU); | 253 | return new_mtu >= MIN_MTU && new_mtu <= MAX_MTU; |
254 | } | 254 | } |
255 | 255 | ||
256 | static int veth_change_mtu(struct net_device *dev, int new_mtu) | 256 | static int veth_change_mtu(struct net_device *dev, int new_mtu) |