mirror of https://gitee.com/openkylin/linux.git
iwlegacy: remove unecessary if statement
the code always returns ret regardless, so if(ret) check is unecessary. Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
e5a042ea30
commit
04975f3fc3
|
@ -1185,8 +1185,6 @@ static int iwl4965_send_rxon_assoc(struct iwl_priv *priv,
|
||||||
|
|
||||||
ret = iwl_legacy_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
|
ret = iwl_legacy_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
|
||||||
sizeof(rxon_assoc), &rxon_assoc, NULL);
|
sizeof(rxon_assoc), &rxon_assoc, NULL);
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue