mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
staging: wilc1000: replace redundant computations with 0
Shifting and masking strHostIfSetMulti->enabled is redundant since enabled is a bool and so all the shifted and masked values will be zero. Replace them with zero to simplify the code. Detected by CoverityScan, CID#1339458 ("Bad shift operation") and CID#1339506 ("Operands don't affect result"). Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2d10b85704
commit
bc7d21ca2c
@ -2420,9 +2420,9 @@ static void Handle_SetMulticastFilter(struct wilc_vif *vif,
|
||||
|
||||
pu8CurrByte = wid.val;
|
||||
*pu8CurrByte++ = (strHostIfSetMulti->enabled & 0xFF);
|
||||
*pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 8) & 0xFF);
|
||||
*pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 16) & 0xFF);
|
||||
*pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 24) & 0xFF);
|
||||
*pu8CurrByte++ = 0;
|
||||
*pu8CurrByte++ = 0;
|
||||
*pu8CurrByte++ = 0;
|
||||
|
||||
*pu8CurrByte++ = (strHostIfSetMulti->cnt & 0xFF);
|
||||
*pu8CurrByte++ = ((strHostIfSetMulti->cnt >> 8) & 0xFF);
|
||||
|
Loading…
Reference in New Issue
Block a user