mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
tipc: Eliminate redundant masking in message header routines
Gets rid of unnecessary masking in two routines that set TIPC message header fields. (The msg_set_bits() routine already takes care of masking the new value to the correct size.) Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
This commit is contained in:
parent
74d33b32de
commit
7eb878ed8e
1 changed files with 2 additions and 2 deletions
|
@ -615,7 +615,7 @@ static inline u32 msg_link_selector(struct tipc_msg *m)
|
|||
|
||||
static inline void msg_set_link_selector(struct tipc_msg *m, u32 n)
|
||||
{
|
||||
msg_set_bits(m, 4, 0, 1, (n & 1));
|
||||
msg_set_bits(m, 4, 0, 1, n);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -639,7 +639,7 @@ static inline u32 msg_probe(struct tipc_msg *m)
|
|||
|
||||
static inline void msg_set_probe(struct tipc_msg *m, u32 val)
|
||||
{
|
||||
msg_set_bits(m, 5, 0, 1, (val & 1));
|
||||
msg_set_bits(m, 5, 0, 1, val);
|
||||
}
|
||||
|
||||
static inline char msg_net_plane(struct tipc_msg *m)
|
||||
|
|
Loading…
Reference in a new issue