diff options
| author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-22 20:43:57 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-09-23 14:33:39 -0700 | 
| commit | a02cec2155fbea457eca8881870fd2de1a4c4c76 (patch) | |
| tree | cfbfc4b32bfe10f9cd803d46c31607d13f1858f5 /net/ipv6/ndisc.c | |
| parent | 6a08d194ee40806e0ccd5f36ed768e64cbfc979f (diff) | |
| download | olio-linux-3.10-a02cec2155fbea457eca8881870fd2de1a4c4c76.tar.xz olio-linux-3.10-a02cec2155fbea457eca8881870fd2de1a4c4c76.zip  | |
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 'net/ipv6/ndisc.c')
| -rw-r--r-- | net/ipv6/ndisc.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 69a0051cea6..b3dd844cd34 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -228,12 +228,12 @@ static struct nd_opt_hdr *ndisc_next_option(struct nd_opt_hdr *cur,  	do {  		cur = ((void *)cur) + (cur->nd_opt_len << 3);  	} while(cur < end && cur->nd_opt_type != type); -	return (cur <= end && cur->nd_opt_type == type ? cur : NULL); +	return cur <= end && cur->nd_opt_type == type ? cur : NULL;  }  static inline int ndisc_is_useropt(struct nd_opt_hdr *opt)  { -	return (opt->nd_opt_type == ND_OPT_RDNSS); +	return opt->nd_opt_type == ND_OPT_RDNSS;  }  static struct nd_opt_hdr *ndisc_next_useropt(struct nd_opt_hdr *cur, @@ -244,7 +244,7 @@ static struct nd_opt_hdr *ndisc_next_useropt(struct nd_opt_hdr *cur,  	do {  		cur = ((void *)cur) + (cur->nd_opt_len << 3);  	} while(cur < end && !ndisc_is_useropt(cur)); -	return (cur <= end && ndisc_is_useropt(cur) ? cur : NULL); +	return cur <= end && ndisc_is_useropt(cur) ? cur : NULL;  }  static struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len, @@ -319,7 +319,7 @@ static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,  	int prepad = ndisc_addr_option_pad(dev->type);  	if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))  		return NULL; -	return (lladdr + prepad); +	return lladdr + prepad;  }  int ndisc_mc_map(struct in6_addr *addr, char *buf, struct net_device *dev, int dir)  |