brcmfmac: fix error return code in brcmf_cfg80211_connect()
authorZhang Changzhong <zhangchangzhong@huawei.com>
Fri, 13 Nov 2020 06:28:16 +0000 (14:28 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Dec 2020 10:53:21 +0000 (11:53 +0100)
[ Upstream commit 37ff144d29acd7bca3d465ce2fc4cb5c7072a7e5 ]

Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 3b1e0a7bdfee ("brcmfmac: add support for SAE authentication offload")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
Reviewed-by: Chi-hsien Lin <chi-hsien.lin@infineon.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1605248896-16812-1-git-send-email-zhangchangzhong@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c

index a2dbbb9..0ee421f 100644 (file)
@@ -2137,7 +2137,8 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
                                    BRCMF_WSEC_MAX_PSK_LEN);
        else if (profile->use_fwsup == BRCMF_PROFILE_FWSUP_SAE) {
                /* clean up user-space RSNE */
-               if (brcmf_fil_iovar_data_set(ifp, "wpaie", NULL, 0)) {
+               err = brcmf_fil_iovar_data_set(ifp, "wpaie", NULL, 0);
+               if (err) {
                        bphy_err(drvr, "failed to clean up user-space RSNE\n");
                        goto done;
                }