|
@@ -12072,13 +12072,9 @@ static int bnx2x_set_coherency_mask(struct bnx2x *bp)
|
|
|
{
|
|
|
struct device *dev = &bp->pdev->dev;
|
|
|
|
|
|
- if (dma_set_mask(dev, DMA_BIT_MASK(64)) == 0) {
|
|
|
+ if (dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)) == 0) {
|
|
|
bp->flags |= USING_DAC_FLAG;
|
|
|
- if (dma_set_coherent_mask(dev, DMA_BIT_MASK(64)) != 0) {
|
|
|
- dev_err(dev, "dma_set_coherent_mask failed, aborting\n");
|
|
|
- return -EIO;
|
|
|
- }
|
|
|
- } else if (dma_set_mask(dev, DMA_BIT_MASK(32)) != 0) {
|
|
|
+ } else if (dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32)) != 0) {
|
|
|
dev_err(dev, "System does not support DMA, aborting\n");
|
|
|
return -EIO;
|
|
|
}
|