mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 02:05:20 +07:00
staging: rtlwifi: Remove unnecessary parentheses
Challenge suggested by coccinelle. Remove unnecessary parentheses around the right hand side of an assignment. Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c377a43d4f
commit
309614bb45
@ -1542,7 +1542,7 @@ static void phydm_set_csi_mask_reg(void *dm_void, u32 tone_idx_tmp,
|
||||
|
||||
if (tone_direction == FREQ_POSITIVE) {
|
||||
if (tone_idx_tmp >= (tone_num - 1))
|
||||
tone_idx_tmp = (tone_num - 1);
|
||||
tone_idx_tmp = tone_num - 1;
|
||||
|
||||
byte_offset = (u8)(tone_idx_tmp >> 3);
|
||||
bit_offset = (u8)(tone_idx_tmp & 0x7);
|
||||
|
Loading…
Reference in New Issue
Block a user