diff options
Diffstat (limited to 'drivers/scsi/gdth.c')
-rw-r--r-- | drivers/scsi/gdth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index 4982344f1f09..185e6bc4dd40 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c | |||
@@ -5023,7 +5023,7 @@ static int __devinit gdth_pci_probe_one(gdth_pci_str *pcistr, | |||
5023 | /* 64-bit DMA only supported from FW >= x.43 */ | 5023 | /* 64-bit DMA only supported from FW >= x.43 */ |
5024 | if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT) || | 5024 | if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT) || |
5025 | !ha->dma64_support) { | 5025 | !ha->dma64_support) { |
5026 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 5026 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
5027 | printk(KERN_WARNING "GDT-PCI %d: " | 5027 | printk(KERN_WARNING "GDT-PCI %d: " |
5028 | "Unable to set 32-bit DMA\n", ha->hanum); | 5028 | "Unable to set 32-bit DMA\n", ha->hanum); |
5029 | goto out_free_coal_stat; | 5029 | goto out_free_coal_stat; |
@@ -5032,7 +5032,7 @@ static int __devinit gdth_pci_probe_one(gdth_pci_str *pcistr, | |||
5032 | shp->max_cmd_len = 16; | 5032 | shp->max_cmd_len = 16; |
5033 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 5033 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
5034 | printk("GDT-PCI %d: 64-bit DMA enabled\n", ha->hanum); | 5034 | printk("GDT-PCI %d: 64-bit DMA enabled\n", ha->hanum); |
5035 | } else if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 5035 | } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
5036 | printk(KERN_WARNING "GDT-PCI %d: " | 5036 | printk(KERN_WARNING "GDT-PCI %d: " |
5037 | "Unable to set 64/32-bit DMA\n", ha->hanum); | 5037 | "Unable to set 64/32-bit DMA\n", ha->hanum); |
5038 | goto out_free_coal_stat; | 5038 | goto out_free_coal_stat; |