Commit 58e597ae authored by Jeff Garzik's avatar Jeff Garzik

[TG3]: Remove pci-set-dma-mask casts.

parent d459392f
...@@ -7558,7 +7558,7 @@ static int __devinit tg3_init_one(struct pci_dev *pdev, ...@@ -7558,7 +7558,7 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
goto err_out_free_res; goto err_out_free_res;
} }
} else { } else {
err = pci_set_dma_mask(pdev, (u64) 0xffffffff); err = pci_set_dma_mask(pdev, 0xffffffffULL);
if (err) { if (err) {
printk(KERN_ERR PFX "No usable DMA configuration, " printk(KERN_ERR PFX "No usable DMA configuration, "
"aborting.\n"); "aborting.\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment