Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: crystalhd: remove unnecessary parenthesis

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

SeongJae Park and committed by
Greg Kroah-Hartman
6d213a45 6037b106

+2 -2
+2 -2
drivers/staging/crystalhd/crystalhd_hw.c
··· 1439 1439 crystalhd_reg_wr(hw->adp, MISC1_UV_RX_ERROR_STATUS, tmp); 1440 1440 } 1441 1441 1442 - return (tmp_lsts != hw->rx_list_sts[0]); 1442 + return tmp_lsts != hw->rx_list_sts[0]; 1443 1443 } 1444 1444 1445 1445 static bool crystalhd_rx_list1_handler(struct crystalhd_hw *hw, ··· 1509 1509 crystalhd_reg_wr(hw->adp, MISC1_UV_RX_ERROR_STATUS, tmp); 1510 1510 } 1511 1511 1512 - return (tmp_lsts != hw->rx_list_sts[1]); 1512 + return tmp_lsts != hw->rx_list_sts[1]; 1513 1513 } 1514 1514 1515 1515