Source
327
327
IOC4_DMA_OFFSET;
328
328
329
329
hwif->sg_max_nents = IOC4_PRD_ENTRIES;
330
330
331
331
hwif->prd_max_nents = IOC4_PRD_ENTRIES;
332
332
hwif->prd_ent_size = IOC4_PRD_BYTES;
333
333
334
334
if (ide_allocate_dma_engine(hwif))
335
335
goto dma_pci_alloc_failure;
336
336
337
-
pad = pci_alloc_consistent(dev, IOC4_IDE_CACHELINE_SIZE,
338
-
(dma_addr_t *)&hwif->extra_base);
337
+
pad = dma_alloc_coherent(&dev->dev, IOC4_IDE_CACHELINE_SIZE,
338
+
(dma_addr_t *)&hwif->extra_base, GFP_KERNEL);
339
339
if (pad) {
340
340
ide_set_hwifdata(hwif, pad);
341
341
return 0;
342
342
}
343
343
344
344
ide_release_dma_engine(hwif);
345
345
346
346
printk(KERN_ERR "%s(%s) -- ERROR: Unable to allocate DMA maps\n",
347
347
__func__, hwif->name);
348
348
printk(KERN_INFO "%s: changing from DMA to PIO mode", hwif->name);