staging: ks7010: Remove extra round braces around expressions/variables

This patch removes excess round braces around expressions/variables.

Signed-off-by: sayli karnik <karniksayli1995@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
sayli karnik 2016-09-18 12:56:25 +05:30 committed by Greg Kroah-Hartman
parent ca4765152e
commit 149ad082a2
1 changed files with 2 additions and 2 deletions

View File

@ -537,7 +537,7 @@ static void ks7010_rw_function(struct work_struct *work)
if (rw_data & RSIZE_MASK) { /* Read schedule */
ks_wlan_hw_rx((void *)priv,
(uint16_t)(((rw_data & RSIZE_MASK) << 4)));
(uint16_t)((rw_data & RSIZE_MASK) << 4));
}
if ((rw_data & WSTATUS_MASK))
tx_device_task((void *)priv);
@ -609,7 +609,7 @@ static void ks_sdio_interrupt(struct sdio_func *func)
rsize = rw_data & RSIZE_MASK;
if (rsize) { /* Read schedule */
ks_wlan_hw_rx((void *)priv,
(uint16_t)(((rsize) << 4)));
(uint16_t)(rsize << 4));
}
if (rw_data & WSTATUS_MASK) {
#if 0