staging:rtl8188eu style fix
Fixed style issue if comparison should place constant on right of test Signed-off-by: Bryan Paul <bryan.paul@yahoo.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
86dc65b36c
commit
a57ace1281
|
@ -125,7 +125,7 @@ u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj)
|
||||||
cmd_obj->padapter = padapter;
|
cmd_obj->padapter = padapter;
|
||||||
|
|
||||||
res = rtw_cmd_filter(pcmdpriv, cmd_obj);
|
res = rtw_cmd_filter(pcmdpriv, cmd_obj);
|
||||||
if (_FAIL == res) {
|
if (res == _FAIL) {
|
||||||
rtw_free_cmd_obj(cmd_obj);
|
rtw_free_cmd_obj(cmd_obj);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
@ -199,7 +199,7 @@ _next:
|
||||||
if (!pcmd)
|
if (!pcmd)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (_FAIL == rtw_cmd_filter(pcmdpriv, pcmd)) {
|
if (rtw_cmd_filter(pcmdpriv, pcmd) == _FAIL) {
|
||||||
pcmd->res = H2C_DROPPED;
|
pcmd->res = H2C_DROPPED;
|
||||||
goto post_process;
|
goto post_process;
|
||||||
}
|
}
|
||||||
|
@ -553,7 +553,7 @@ u8 rtw_disassoc_cmd(struct adapter *padapter, u32 deauth_timeout_ms, bool enqueu
|
||||||
res = rtw_enqueue_cmd(cmdpriv, cmdobj);
|
res = rtw_enqueue_cmd(cmdpriv, cmdobj);
|
||||||
} else {
|
} else {
|
||||||
/* no need to enqueue, do the cmd hdl directly and free cmd parameter */
|
/* no need to enqueue, do the cmd hdl directly and free cmd parameter */
|
||||||
if (H2C_SUCCESS != disconnect_hdl(padapter, (u8 *)param))
|
if (disconnect_hdl(padapter, (u8 *)param) != H2C_SUCCESS)
|
||||||
res = _FAIL;
|
res = _FAIL;
|
||||||
kfree(param);
|
kfree(param);
|
||||||
}
|
}
|
||||||
|
@ -819,7 +819,7 @@ u8 rtw_set_chplan_cmd(struct adapter *padapter, u8 chplan, u8 enqueue)
|
||||||
res = rtw_enqueue_cmd(pcmdpriv, pcmdobj);
|
res = rtw_enqueue_cmd(pcmdpriv, pcmdobj);
|
||||||
} else {
|
} else {
|
||||||
/* no need to enqueue, do the cmd hdl directly and free cmd parameter */
|
/* no need to enqueue, do the cmd hdl directly and free cmd parameter */
|
||||||
if (H2C_SUCCESS != set_chplan_hdl(padapter, (unsigned char *)setChannelPlan_param))
|
if (set_chplan_hdl(padapter, (unsigned char *)setChannelPlan_param) != H2C_SUCCESS)
|
||||||
res = _FAIL;
|
res = _FAIL;
|
||||||
|
|
||||||
kfree(setChannelPlan_param);
|
kfree(setChannelPlan_param);
|
||||||
|
|
Loading…
Reference in New Issue