diff options
Diffstat (limited to 'drivers/net/tehuti.c')
-rw-r--r-- | drivers/net/tehuti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tehuti.c b/drivers/net/tehuti.c index 7debd1e4e1f7..d77a0918a325 100644 --- a/drivers/net/tehuti.c +++ b/drivers/net/tehuti.c | |||
@@ -1941,8 +1941,8 @@ bdx_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1941 | if ((err = pci_enable_device(pdev))) /* it trigers interrupt, dunno why. */ | 1941 | if ((err = pci_enable_device(pdev))) /* it trigers interrupt, dunno why. */ |
1942 | goto err_pci; /* it's not a problem though */ | 1942 | goto err_pci; /* it's not a problem though */ |
1943 | 1943 | ||
1944 | if (!(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK)) && | 1944 | if (!(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) && |
1945 | !(err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))) { | 1945 | !(err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)))) { |
1946 | pci_using_dac = 1; | 1946 | pci_using_dac = 1; |
1947 | } else { | 1947 | } else { |
1948 | if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) || | 1948 | if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) || |