mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00:00
staging: r8188eu: combine both sides of conditional statement
Both sides of conditional statement are the same except for the comment. Additional instance found with git grep. Suggested-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Rebecca Mckeever <remckee0@gmail.com> Link: https://lore.kernel.org/r/d33c51bc3a20fa25e4737b258f3b1c42cc8124e3.1649011311.git.remckee0@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
189a9bb772
commit
db5d5ae504
@ -1411,11 +1411,9 @@ void rtw_survey_cmd_callback(struct adapter *padapter, struct cmd_obj *pcmd)
|
||||
{
|
||||
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
|
||||
|
||||
if (pcmd->res == H2C_DROPPED) {
|
||||
if (pcmd->res != H2C_SUCCESS) {
|
||||
/* TODO: cancel timer and do timeout handler directly... */
|
||||
_set_timer(&pmlmepriv->scan_to_timer, 1);
|
||||
} else if (pcmd->res != H2C_SUCCESS) {
|
||||
_set_timer(&pmlmepriv->scan_to_timer, 1);
|
||||
}
|
||||
|
||||
/* free cmd */
|
||||
@ -1445,11 +1443,9 @@ void rtw_joinbss_cmd_callback(struct adapter *padapter, struct cmd_obj *pcmd)
|
||||
{
|
||||
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
|
||||
|
||||
if (pcmd->res == H2C_DROPPED) {
|
||||
if (pcmd->res != H2C_SUCCESS) {
|
||||
/* TODO: cancel timer and do timeout handler directly... */
|
||||
_set_timer(&pmlmepriv->assoc_timer, 1);
|
||||
} else if (pcmd->res != H2C_SUCCESS) {
|
||||
_set_timer(&pmlmepriv->assoc_timer, 1);
|
||||
}
|
||||
|
||||
rtw_free_cmd_obj(pcmd);
|
||||
|
Loading…
Reference in New Issue
Block a user