aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/ata/ahci.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index ed311a040fed..60e42e2ed68f 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -1436,14 +1436,14 @@ static int ahci_init_msi(struct pci_dev *pdev, unsigned int n_ports,
1436 "ahci: MRSM is on, fallback to single MSI\n"); 1436 "ahci: MRSM is on, fallback to single MSI\n");
1437 pci_free_irq_vectors(pdev); 1437 pci_free_irq_vectors(pdev);
1438 } 1438 }
1439 }
1440 1439
1441 /* 1440 /*
1442 * -ENOSPC indicated we don't have enough vectors. Don't bother trying 1441 * -ENOSPC indicated we don't have enough vectors. Don't bother
1443 * a single vectors for any other error: 1442 * trying a single vectors for any other error:
1444 */ 1443 */
1445 if (nvec < 0 && nvec != -ENOSPC) 1444 if (nvec < 0 && nvec != -ENOSPC)
1446 return nvec; 1445 return nvec;
1446 }
1447 1447
1448 /* 1448 /*
1449 * If the host is not capable of supporting per-port vectors, fall 1449 * If the host is not capable of supporting per-port vectors, fall