diff options
Diffstat (limited to 'drivers/infiniband/hw/ipath/ipath_driver.c')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_driver.c b/drivers/infiniband/hw/ipath/ipath_driver.c index 6efc56bce921..823131d58b34 100644 --- a/drivers/infiniband/hw/ipath/ipath_driver.c +++ b/drivers/infiniband/hw/ipath/ipath_driver.c | |||
@@ -468,7 +468,7 @@ static int __devinit ipath_init_one(struct pci_dev *pdev, | |||
468 | "continuing anyway\n"); | 468 | "continuing anyway\n"); |
469 | 469 | ||
470 | /* | 470 | /* |
471 | * set up our interrupt handler; SA_SHIRQ probably not needed, | 471 | * set up our interrupt handler; IRQF_SHARED probably not needed, |
472 | * since MSI interrupts shouldn't be shared but won't hurt for now. | 472 | * since MSI interrupts shouldn't be shared but won't hurt for now. |
473 | * check 0 irq after we return from chip-specific bus setup, since | 473 | * check 0 irq after we return from chip-specific bus setup, since |
474 | * that can affect this due to setup | 474 | * that can affect this due to setup |
@@ -477,7 +477,7 @@ static int __devinit ipath_init_one(struct pci_dev *pdev, | |||
477 | ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't " | 477 | ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't " |
478 | "work\n"); | 478 | "work\n"); |
479 | else { | 479 | else { |
480 | ret = request_irq(pdev->irq, ipath_intr, SA_SHIRQ, | 480 | ret = request_irq(pdev->irq, ipath_intr, IRQF_SHARED, |
481 | IPATH_DRV_NAME, dd); | 481 | IPATH_DRV_NAME, dd); |
482 | if (ret) { | 482 | if (ret) { |
483 | ipath_dev_err(dd, "Couldn't setup irq handler, " | 483 | ipath_dev_err(dd, "Couldn't setup irq handler, " |