scsi: 53c700: switch to dma_alloc_attrs
Use dma_alloc_attrs directly instead of the dma_alloc_noncoherent wrapper. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
e365cab14f
commit
106e97b92e
|
@ -296,8 +296,8 @@ NCR_700_detect(struct scsi_host_template *tpnt,
|
||||||
if(tpnt->sdev_attrs == NULL)
|
if(tpnt->sdev_attrs == NULL)
|
||||||
tpnt->sdev_attrs = NCR_700_dev_attrs;
|
tpnt->sdev_attrs = NCR_700_dev_attrs;
|
||||||
|
|
||||||
memory = dma_alloc_noncoherent(hostdata->dev, TOTAL_MEM_SIZE,
|
memory = dma_alloc_attrs(hostdata->dev, TOTAL_MEM_SIZE, &pScript,
|
||||||
&pScript, GFP_KERNEL);
|
GFP_KERNEL, DMA_ATTR_NON_CONSISTENT);
|
||||||
if(memory == NULL) {
|
if(memory == NULL) {
|
||||||
printk(KERN_ERR "53c700: Failed to allocate memory for driver, detaching\n");
|
printk(KERN_ERR "53c700: Failed to allocate memory for driver, detaching\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -410,8 +410,8 @@ NCR_700_release(struct Scsi_Host *host)
|
||||||
struct NCR_700_Host_Parameters *hostdata =
|
struct NCR_700_Host_Parameters *hostdata =
|
||||||
(struct NCR_700_Host_Parameters *)host->hostdata[0];
|
(struct NCR_700_Host_Parameters *)host->hostdata[0];
|
||||||
|
|
||||||
dma_free_noncoherent(hostdata->dev, TOTAL_MEM_SIZE,
|
dma_free_attrs(hostdata->dev, TOTAL_MEM_SIZE, hostdata->script,
|
||||||
hostdata->script, hostdata->pScript);
|
hostdata->pScript, DMA_ATTR_NON_CONSISTENT);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue