diff options
Diffstat (limited to 'drivers/scsi/megaraid/megaraid_sas.c')
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/megaraid/megaraid_sas.c b/drivers/scsi/megaraid/megaraid_sas.c index 713de85771f3..7dc3d1894b1a 100644 --- a/drivers/scsi/megaraid/megaraid_sas.c +++ b/drivers/scsi/megaraid/megaraid_sas.c | |||
@@ -2499,11 +2499,11 @@ megasas_set_dma_mask(struct pci_dev *pdev) | |||
2499 | if (IS_DMA64) { | 2499 | if (IS_DMA64) { |
2500 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) { | 2500 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) { |
2501 | 2501 | ||
2502 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) | 2502 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) |
2503 | goto fail_set_dma_mask; | 2503 | goto fail_set_dma_mask; |
2504 | } | 2504 | } |
2505 | } else { | 2505 | } else { |
2506 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) | 2506 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) |
2507 | goto fail_set_dma_mask; | 2507 | goto fail_set_dma_mask; |
2508 | } | 2508 | } |
2509 | return 0; | 2509 | return 0; |