mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 16:44:10 +08:00
cw1200: Remove extra parentheses
Remove unnecessary parentheses to fix the extraneous parentheses clang warning. Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
9e9e11d832
commit
057118edfc
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user