Commit 057118ed authored by Varsha Rao's avatar Varsha Rao Committed by Kalle Valo
Browse files

cw1200: Remove extra parentheses



Remove unnecessary parentheses to fix the extraneous parentheses clang
warning.

Signed-off-by: default avatarVarsha Rao <rvarsha016@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 9e9e11d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -624,9 +624,9 @@ cw1200_tx_h_bt(struct cw1200_common *priv,
			priority = WSM_EPTA_PRIORITY_ACTION;
		else if (ieee80211_is_mgmt(t->hdr->frame_control))
			priority = WSM_EPTA_PRIORITY_MGT;
		else if ((wsm->queue_id == WSM_QUEUE_VOICE))
		else if (wsm->queue_id == WSM_QUEUE_VOICE)
			priority = WSM_EPTA_PRIORITY_VOICE;
		else if ((wsm->queue_id == WSM_QUEUE_VIDEO))
		else if (wsm->queue_id == WSM_QUEUE_VIDEO)
			priority = WSM_EPTA_PRIORITY_VIDEO;
		else
			priority = WSM_EPTA_PRIORITY_DATA;