ath10k: add missing error return code in ath10k_pci_probe()
[ Upstream commit e2783e2f39ba99178dedfc1646d5cc0979d1bab3 ] When chip_id is not supported, the resources will be freed on path err_unsupported, these resources will also be freed when calling ath10k_pci_remove(), it will cause double free, so return -ENODEV when it doesn't support the device with wrong chip_id. Fixes:c0c378f990
("ath10k: remove target soc ps code") Fixes:7505f7c3ec
("ath10k: create a chip revision whitelist") Fixes:f8914a1462
("ath10k: restore QCA9880-AR1A (v1) detection") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20210522105822.1091848-3-yangyingliang@huawei.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
668c0663d6
commit
ecb6797501
@@ -3684,10 +3684,12 @@ static int ath10k_pci_probe(struct pci_dev *pdev,
|
|||||||
ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
|
ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
|
||||||
if (bus_params.chip_id != 0xffffffff) {
|
if (bus_params.chip_id != 0xffffffff) {
|
||||||
if (!ath10k_pci_chip_is_supported(pdev->device,
|
if (!ath10k_pci_chip_is_supported(pdev->device,
|
||||||
bus_params.chip_id))
|
bus_params.chip_id)) {
|
||||||
|
ret = -ENODEV;
|
||||||
goto err_unsupported;
|
goto err_unsupported;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ret = ath10k_pci_chip_reset(ar);
|
ret = ath10k_pci_chip_reset(ar);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
@@ -3696,11 +3698,15 @@ static int ath10k_pci_probe(struct pci_dev *pdev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
bus_params.chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
|
bus_params.chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
|
||||||
if (bus_params.chip_id == 0xffffffff)
|
if (bus_params.chip_id == 0xffffffff) {
|
||||||
|
ret = -ENODEV;
|
||||||
goto err_unsupported;
|
goto err_unsupported;
|
||||||
|
}
|
||||||
|
|
||||||
if (!ath10k_pci_chip_is_supported(pdev->device, bus_params.chip_id))
|
if (!ath10k_pci_chip_is_supported(pdev->device, bus_params.chip_id)) {
|
||||||
|
ret = -ENODEV;
|
||||||
goto err_unsupported;
|
goto err_unsupported;
|
||||||
|
}
|
||||||
|
|
||||||
ret = ath10k_core_register(ar, &bus_params);
|
ret = ath10k_core_register(ar, &bus_params);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
Reference in New Issue
Block a user