]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ath10k: Fix error handling in case of CE pipe init failure
authorRakesh Pillai <pillair@codeaurora.org>
Fri, 11 Dec 2020 19:00:10 +0000 (00:30 +0530)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 17 Dec 2020 06:49:07 +0000 (08:49 +0200)
Currently if the copy engine pipe init fails for snoc based
chipsets, the rri is not freed.

Fix this error handling for copy engine pipe init
failure.

Tested-on: WCN3990 hw1.0 SNOC WLAN.HL.3.1-01040-QCAHLSWMTPLZ-1

Fixes: 4945af5b264f ("ath10k: enable SRRI/DRRI support on ddr for WCN3990")
Signed-off-by: Rakesh Pillai <pillair@codeaurora.org>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1607713210-18320-1-git-send-email-pillair@codeaurora.org
drivers/net/wireless/ath/ath10k/snoc.c

index bf9a8cb713dc0ea50f7cf31c3333cef1f547984e..1c3307e3b1085ede5f66d3dac85736ea82d8fdc2 100644 (file)
@@ -1045,12 +1045,13 @@ static int ath10k_snoc_hif_power_up(struct ath10k *ar,
        ret = ath10k_snoc_init_pipes(ar);
        if (ret) {
                ath10k_err(ar, "failed to initialize CE: %d\n", ret);
-               goto err_wlan_enable;
+               goto err_free_rri;
        }
 
        return 0;
 
-err_wlan_enable:
+err_free_rri:
+       ath10k_ce_free_rri(ar);
        ath10k_snoc_wlan_disable(ar);
 
        return ret;