Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e385c56 authored by John W. Linville's avatar John W. Linville
Browse files

rtl8180: change PCI DMA mask to DMA_BIT_MASK(32)



From the original report:

"I had problems to get my rtl8185 PCI card running on Sparc64: I always
got an error about "No suitable DMA available" followed by an error
that no device could be detected. When comparing the rtl8180 driver to
others I noticed that others are mostly using DMA_BIT_MASK so I changed
the custom mask to DMA_BIT_MASK(32) which fixed my issue."

Reported-by: default avatarTiziano Müller <tm@dev-zero.ch>
Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1affa091
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -926,8 +926,8 @@ static int __devinit rtl8180_probe(struct pci_dev *pdev,
		goto err_free_reg;
	}

	if ((err = pci_set_dma_mask(pdev, 0xFFFFFF00ULL)) ||
	    (err = pci_set_consistent_dma_mask(pdev, 0xFFFFFF00ULL))) {
	if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) ||
	    (err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))) {
		printk(KERN_ERR "%s (rtl8180): No suitable DMA available\n",
		       pci_name(pdev));
		goto err_free_reg;