summaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorFuqian Huang2019-06-27 19:34:18 +0200
committerJens Axboe2019-06-29 17:42:23 +0200
commit523e099b69551961dc3f3070a960338328ac0774 (patch)
tree13afe9ad9e55cc99eb2635250d62ed8aee512595 /drivers/ata
parentata: pdc_adma: Remove call to memset after dmam_alloc_coherent (diff)
downloadkernel-qcow2-linux-523e099b69551961dc3f3070a960338328ac0774.tar.gz
kernel-qcow2-linux-523e099b69551961dc3f3070a960338328ac0774.tar.xz
kernel-qcow2-linux-523e099b69551961dc3f3070a960338328ac0774.zip
ata: sata_nv: Remove call to memset after dmam_alloc_coherent
In commit af7ddd8a627c ("Merge tag 'dma-mapping-4.21' of git://git.infradead.org/users/hch/dma-mapping"), dmam_alloc_coherent has already zeroed the memory. So memset is not needed. Signed-off-by: Fuqian Huang <huangfq.daxian@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/sata_nv.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/ata/sata_nv.c b/drivers/ata/sata_nv.c
index 54bfab15c74a..b44b4b64354c 100644
--- a/drivers/ata/sata_nv.c
+++ b/drivers/ata/sata_nv.c
@@ -1136,7 +1136,6 @@ static int nv_adma_port_start(struct ata_port *ap)
&mem_dma, GFP_KERNEL);
if (!mem)
return -ENOMEM;
- memset(mem, 0, NV_ADMA_PORT_PRIV_DMA_SZ);
/*
* First item in chunk of DMA memory:
@@ -1946,7 +1945,6 @@ static int nv_swncq_port_start(struct ata_port *ap)
&pp->prd_dma, GFP_KERNEL);
if (!pp->prd)
return -ENOMEM;
- memset(pp->prd, 0, ATA_PRD_TBL_SZ * ATA_MAX_QUEUE);
ap->private_data = pp;
pp->sactive_block = ap->ioaddr.scr_addr + 4 * SCR_ACTIVE;