ath10k: go to path err_unsupported when chip id is not supported
authorYang Yingliang <yangyingliang@huawei.com>
Mon, 31 May 2021 14:41:28 +0000 (17:41 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Jul 2021 14:56:20 +0000 (16:56 +0200)
[ Upstream commit 9e88dd431d2345acdb7a549f3e88aaf4c2a307a1 ]

When chip id is not supported, it go to path err_unsupported
to print the error message.

Fixes: f8914a14623a ("ath10k: restore QCA9880-AR1A (v1) detection")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210522105822.1091848-2-yangyingliang@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/ath/ath10k/pci.c

index 36426efdb2ea01b0e481efaa0aec6bbfbd37628b..55f483d22b6d3b0779bce0eac0a7ed04287c97c4 100644 (file)
@@ -3700,7 +3700,7 @@ static int ath10k_pci_probe(struct pci_dev *pdev,
                goto err_unsupported;
 
        if (!ath10k_pci_chip_is_supported(pdev->device, bus_params.chip_id))
-               goto err_free_irq;
+               goto err_unsupported;
 
        ret = ath10k_core_register(ar, &bus_params);
        if (ret) {