|
@@ -1990,8 +1990,13 @@ static int ath10k_pci_start_intr_msix(struct ath10k *ar, int num)
|
|
|
ret = request_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW,
|
|
|
ath10k_pci_msi_fw_handler,
|
|
|
IRQF_SHARED, "ath10k_pci", ar);
|
|
|
- if (ret)
|
|
|
+ if (ret) {
|
|
|
+ ath10k_warn("request_irq(%d) failed %d\n",
|
|
|
+ ar_pci->pdev->irq + MSI_ASSIGN_FW, ret);
|
|
|
+
|
|
|
+ pci_disable_msi(ar_pci->pdev);
|
|
|
return ret;
|
|
|
+ }
|
|
|
|
|
|
for (i = MSI_ASSIGN_CE_INITIAL; i <= MSI_ASSIGN_CE_MAX; i++) {
|
|
|
ret = request_irq(ar_pci->pdev->irq + i,
|