|
@@ -88,11 +88,9 @@ static const char *const ep_name[] = {
|
|
|
* These two parameters let you use PIO or more aggressive DMA.
|
|
|
*/
|
|
|
static bool use_dma = true;
|
|
|
-static bool use_msi = true;
|
|
|
|
|
|
/* "modprobe net2280 use_dma=n" etc */
|
|
|
module_param(use_dma, bool, 0444);
|
|
|
-module_param(use_msi, bool, 0444);
|
|
|
|
|
|
/* mode 0 == ep-{a,b,c,d} 1K fifo each
|
|
|
* mode 1 == ep-{a,b} 2K fifo each, ep-{c,d} unavailable
|
|
@@ -3426,7 +3424,7 @@ static void net2280_remove(struct pci_dev *pdev)
|
|
|
}
|
|
|
if (dev->got_irq)
|
|
|
free_irq(pdev->irq, dev);
|
|
|
- if (use_msi && dev->quirks & PLX_SUPERSPEED)
|
|
|
+ if (dev->quirks & PLX_SUPERSPEED)
|
|
|
pci_disable_msi(pdev);
|
|
|
if (dev->regs)
|
|
|
iounmap(dev->regs);
|
|
@@ -3549,7 +3547,7 @@ static int net2280_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|
|
goto done;
|
|
|
}
|
|
|
|
|
|
- if (use_msi && (dev->quirks & PLX_SUPERSPEED))
|
|
|
+ if (dev->quirks & PLX_SUPERSPEED)
|
|
|
if (pci_enable_msi(pdev))
|
|
|
ep_err(dev, "Failed to enable MSI mode\n");
|
|
|
|