Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

staging: crystalhd: remove unnecessary parenthesis

parent 6037b106
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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];
}