From: SeongJae Park Date: Sat, 18 Jan 2014 07:28:24 +0000 (+0900) Subject: staging: crystalhd: remove unnecessary parenthesis X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6d213a450ec17089d0190ae35895b8ed375afc63;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git staging: crystalhd: remove unnecessary parenthesis Signed-off-by: SeongJae Park Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/crystalhd/crystalhd_hw.c b/drivers/staging/crystalhd/crystalhd_hw.c index ccfa3b877a2e..4765d528279b 100644 --- a/drivers/staging/crystalhd/crystalhd_hw.c +++ b/drivers/staging/crystalhd/crystalhd_hw.c @@ -1439,7 +1439,7 @@ static bool crystalhd_rx_list0_handler(struct crystalhd_hw *hw, crystalhd_reg_wr(hw->adp, MISC1_UV_RX_ERROR_STATUS, tmp); } - return (tmp_lsts != hw->rx_list_sts[0]); + return tmp_lsts != hw->rx_list_sts[0]; } static bool crystalhd_rx_list1_handler(struct crystalhd_hw *hw, @@ -1509,7 +1509,7 @@ static bool crystalhd_rx_list1_handler(struct crystalhd_hw *hw, crystalhd_reg_wr(hw->adp, MISC1_UV_RX_ERROR_STATUS, tmp); } - return (tmp_lsts != hw->rx_list_sts[1]); + return tmp_lsts != hw->rx_list_sts[1]; }