staging: rtlwifi: phydm: phydm_adc_sampling.c Remove brackets

Remove parentheses around right hand side of expression. Issue found
with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishka.dasgupta@yahoo.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nishka Dasgupta 2019-03-29 01:00:40 +05:30 committed by Greg Kroah-Hartman
parent b12ccd2e6c
commit c27d975a03
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ static void phydm_la_get_tx_pkt_buf(void *dm_void)
"is_round_up = ((%d)), finish_addr=((0x%x)), 0x7c0=((0x%x))\n",
is_round_up, finish_addr, value32);
/*Byte to 64Byte*/
smp_number = ((adc_smp_buf->buffer_size) >> 3);
smp_number = (adc_smp_buf->buffer_size) >> 3;
} else {
addr = adc_smp_buf->start_pos;
@ -103,7 +103,7 @@ static void phydm_la_get_tx_pkt_buf(void *dm_void)
/*Reg140=0x780+(addr>>12),
*addr=0x30~0x3F, total 16 pages
*/
page = (addr >> 12);
page = addr >> 12;
}
odm_set_bb_reg(dm, 0x0140, MASKLWORD, 0x780 + page);