diff options
Diffstat (limited to 'drivers/block/sx8.c')
-rw-r--r-- | drivers/block/sx8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/sx8.c b/drivers/block/sx8.c index 9db0a9e3e59c..d57007b92f77 100644 --- a/drivers/block/sx8.c +++ b/drivers/block/sx8.c | |||
@@ -1582,7 +1582,7 @@ static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1582 | if (rc) | 1582 | if (rc) |
1583 | goto err_out; | 1583 | goto err_out; |
1584 | 1584 | ||
1585 | #if IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */ | 1585 | #ifdef IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */ |
1586 | rc = pci_set_dma_mask(pdev, DMA_64BIT_MASK); | 1586 | rc = pci_set_dma_mask(pdev, DMA_64BIT_MASK); |
1587 | if (!rc) { | 1587 | if (!rc) { |
1588 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 1588 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); |
@@ -1601,7 +1601,7 @@ static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1601 | goto err_out_regions; | 1601 | goto err_out_regions; |
1602 | } | 1602 | } |
1603 | pci_dac = 0; | 1603 | pci_dac = 0; |
1604 | #if IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */ | 1604 | #ifdef IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */ |
1605 | } | 1605 | } |
1606 | #endif | 1606 | #endif |
1607 | 1607 | ||