|
@@ -78,6 +78,7 @@
|
|
#include <linux/slab.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/pci.h>
|
|
#include <linux/pci.h>
|
|
|
|
+#include <linux/dma-mapping.h>
|
|
#include <linux/init.h>
|
|
#include <linux/init.h>
|
|
#include <linux/netdevice.h>
|
|
#include <linux/netdevice.h>
|
|
#include <linux/etherdevice.h>
|
|
#include <linux/etherdevice.h>
|
|
@@ -354,7 +355,7 @@ static int __devinit dmfe_init_one (struct pci_dev *pdev,
|
|
SET_MODULE_OWNER(dev);
|
|
SET_MODULE_OWNER(dev);
|
|
SET_NETDEV_DEV(dev, &pdev->dev);
|
|
SET_NETDEV_DEV(dev, &pdev->dev);
|
|
|
|
|
|
- if (pci_set_dma_mask(pdev, 0xffffffff)) {
|
|
|
|
|
|
+ if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
|
|
printk(KERN_WARNING DRV_NAME ": 32-bit PCI DMA not available.\n");
|
|
printk(KERN_WARNING DRV_NAME ": 32-bit PCI DMA not available.\n");
|
|
err = -ENODEV;
|
|
err = -ENODEV;
|
|
goto err_out_free;
|
|
goto err_out_free;
|