Commit 6d213a45 authored by SeongJae Park's avatar SeongJae Park Committed by Greg Kroah-Hartman

staging: crystalhd: remove unnecessary parenthesis

Signed-off-by: default avatarSeongJae Park <sj38.park@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6037b106
...@@ -1439,7 +1439,7 @@ static bool crystalhd_rx_list0_handler(struct crystalhd_hw *hw, ...@@ -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); 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, static bool crystalhd_rx_list1_handler(struct crystalhd_hw *hw,
...@@ -1509,7 +1509,7 @@ 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); 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];
} }
......
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