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/tipc/msg.h | |
| 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/tipc/msg.h')
| -rw-r--r-- | net/tipc/msg.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/msg.h b/net/tipc/msg.h index 995d2da35b0..031aad18efc 100644 --- a/net/tipc/msg.h +++ b/net/tipc/msg.h @@ -104,7 +104,7 @@ static inline u32 msg_user(struct tipc_msg *m)  static inline u32 msg_isdata(struct tipc_msg *m)  { -	return (msg_user(m) <= TIPC_CRITICAL_IMPORTANCE); +	return msg_user(m) <= TIPC_CRITICAL_IMPORTANCE;  }  static inline void msg_set_user(struct tipc_msg *m, u32 n) @@ -289,7 +289,7 @@ static inline void msg_set_destnode(struct tipc_msg *m, u32 a)  static inline int msg_is_dest(struct tipc_msg *m, u32 d)  { -	return(msg_short(m) || (msg_destnode(m) == d)); +	return msg_short(m) || (msg_destnode(m) == d);  }  static inline u32 msg_routed(struct tipc_msg *m) @@ -632,7 +632,7 @@ static inline void msg_set_bcast_tag(struct tipc_msg *m, u32 n)  static inline u32 msg_max_pkt(struct tipc_msg *m)  { -	return (msg_bits(m, 9, 16, 0xffff) * 4); +	return msg_bits(m, 9, 16, 0xffff) * 4;  }  static inline void msg_set_max_pkt(struct tipc_msg *m, u32 n)  |