diff options
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/he.c | 2 | ||||
-rw-r--r-- | drivers/atm/lanai.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index bdbad7edf682..2de64065aa1b 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c | |||
@@ -358,7 +358,7 @@ he_init_one(struct pci_dev *pci_dev, const struct pci_device_id *pci_ent) | |||
358 | 358 | ||
359 | if (pci_enable_device(pci_dev)) | 359 | if (pci_enable_device(pci_dev)) |
360 | return -EIO; | 360 | return -EIO; |
361 | if (pci_set_dma_mask(pci_dev, DMA_32BIT_MASK) != 0) { | 361 | if (pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)) != 0) { |
362 | printk(KERN_WARNING "he: no suitable dma available\n"); | 362 | printk(KERN_WARNING "he: no suitable dma available\n"); |
363 | err = -EIO; | 363 | err = -EIO; |
364 | goto init_one_failure; | 364 | goto init_one_failure; |
diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c index 8733a2ea04c2..cf97c34cbaf1 100644 --- a/drivers/atm/lanai.c +++ b/drivers/atm/lanai.c | |||
@@ -1957,12 +1957,12 @@ static int __devinit lanai_pci_start(struct lanai_dev *lanai) | |||
1957 | return -ENXIO; | 1957 | return -ENXIO; |
1958 | } | 1958 | } |
1959 | pci_set_master(pci); | 1959 | pci_set_master(pci); |
1960 | if (pci_set_dma_mask(pci, DMA_32BIT_MASK) != 0) { | 1960 | if (pci_set_dma_mask(pci, DMA_BIT_MASK(32)) != 0) { |
1961 | printk(KERN_WARNING DEV_LABEL | 1961 | printk(KERN_WARNING DEV_LABEL |
1962 | "(itf %d): No suitable DMA available.\n", lanai->number); | 1962 | "(itf %d): No suitable DMA available.\n", lanai->number); |
1963 | return -EBUSY; | 1963 | return -EBUSY; |
1964 | } | 1964 | } |
1965 | if (pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) != 0) { | 1965 | if (pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32)) != 0) { |
1966 | printk(KERN_WARNING DEV_LABEL | 1966 | printk(KERN_WARNING DEV_LABEL |
1967 | "(itf %d): No suitable DMA available.\n", lanai->number); | 1967 | "(itf %d): No suitable DMA available.\n", lanai->number); |
1968 | return -EBUSY; | 1968 | return -EBUSY; |