diff options
Diffstat (limited to 'drivers/rapidio/devices')
-rw-r--r-- | drivers/rapidio/devices/tsi721.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/rapidio/devices/tsi721.c b/drivers/rapidio/devices/tsi721.c index 19743597cd95..78dff6f40736 100644 --- a/drivers/rapidio/devices/tsi721.c +++ b/drivers/rapidio/devices/tsi721.c | |||
@@ -2316,7 +2316,8 @@ static int __devinit tsi721_probe(struct pci_dev *pdev, | |||
2316 | 2316 | ||
2317 | /* Configure DMA attributes. */ | 2317 | /* Configure DMA attributes. */ |
2318 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 2318 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
2319 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { | 2319 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2320 | if (err) { | ||
2320 | dev_info(&pdev->dev, "Unable to set DMA mask\n"); | 2321 | dev_info(&pdev->dev, "Unable to set DMA mask\n"); |
2321 | goto err_unmap_bars; | 2322 | goto err_unmap_bars; |
2322 | } | 2323 | } |