Commit c27d975a authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Greg Kroah-Hartman

staging: rtlwifi: phydm: phydm_adc_sampling.c Remove brackets

Remove parentheses around right hand side of expression. Issue found
with Coccinelle.
Signed-off-by: default avatarNishka Dasgupta <nishka.dasgupta@yahoo.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b12ccd2e
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment