mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 14:50:19 +00:00
qtnfmac: remove meaningless labels
some function's label meaningless, the return statement follows the goto statement, so just remove it. Signed-off-by: wengjianfeng <wengjianfeng@yulong.com> Reviewed-by: Sergey Matyukevich <geomatsi@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20210223065754.34392-1-samirweng1979@163.com
This commit is contained in:
parent
18fb0bedb5
commit
a221d0afbf
@ -680,13 +680,10 @@ qtnf_connect(struct wiphy *wiphy, struct net_device *dev,
|
||||
eth_zero_addr(vif->bssid);
|
||||
|
||||
ret = qtnf_cmd_send_connect(vif, sme);
|
||||
if (ret) {
|
||||
if (ret)
|
||||
pr_err("VIF%u.%u: failed to connect\n",
|
||||
vif->mac->macid, vif->vifid);
|
||||
goto out;
|
||||
}
|
||||
|
||||
out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -702,13 +699,10 @@ qtnf_external_auth(struct wiphy *wiphy, struct net_device *dev,
|
||||
pr_warn("unexpected bssid: %pM", auth->bssid);
|
||||
|
||||
ret = qtnf_cmd_send_external_auth(vif, auth);
|
||||
if (ret) {
|
||||
if (ret)
|
||||
pr_err("VIF%u.%u: failed to report external auth\n",
|
||||
vif->mac->macid, vif->vifid);
|
||||
goto out;
|
||||
}
|
||||
|
||||
out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -727,8 +721,7 @@ qtnf_disconnect(struct wiphy *wiphy, struct net_device *dev,
|
||||
}
|
||||
|
||||
if (vif->wdev.iftype != NL80211_IFTYPE_STATION) {
|
||||
ret = -EOPNOTSUPP;
|
||||
goto out;
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
ret = qtnf_cmd_send_disconnect(vif, reason_code);
|
||||
@ -742,7 +735,6 @@ qtnf_disconnect(struct wiphy *wiphy, struct net_device *dev,
|
||||
NULL, 0, true, GFP_KERNEL);
|
||||
}
|
||||
|
||||
out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -935,13 +927,10 @@ static int qtnf_update_owe_info(struct wiphy *wiphy, struct net_device *dev,
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
ret = qtnf_cmd_send_update_owe(vif, owe_info);
|
||||
if (ret) {
|
||||
if (ret)
|
||||
pr_err("VIF%u.%u: failed to update owe info\n",
|
||||
vif->mac->macid, vif->vifid);
|
||||
goto out;
|
||||
}
|
||||
|
||||
out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -987,18 +976,14 @@ static int qtnf_resume(struct wiphy *wiphy)
|
||||
vif = qtnf_mac_get_base_vif(mac);
|
||||
if (!vif) {
|
||||
pr_err("MAC%u: primary VIF is not configured\n", mac->macid);
|
||||
ret = -EFAULT;
|
||||
goto exit;
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
ret = qtnf_cmd_send_wowlan_set(vif, NULL);
|
||||
if (ret) {
|
||||
if (ret)
|
||||
pr_err("MAC%u: failed to reset WoWLAN triggers\n",
|
||||
mac->macid);
|
||||
goto exit;
|
||||
}
|
||||
|
||||
exit:
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user