aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSouptick Joarder <jrdr.linux@gmail.com>2016-11-28 05:11:44 -0500
committerVinod Koul <vinod.koul@intel.com>2016-11-28 22:12:13 -0500
commit5c279b1003f9070b29d9e1e4da7b61126c5a46bb (patch)
treebdf83e5833fd66ea25f12a3ea1056c8e20290f99
parent942ba9dc133d82e4ce8cb006e7111aa1b3dcaec7 (diff)
dmaengine: pch_dma: Replace pci_pool_alloc by pci_pool_zalloc
Inside pdc_alloc_desc(), pci_pool_alloc() followed by memset will be replaced by pci_pool_zalloc() Signed-off-by: Souptick joarder <jrdr.linux@gmail.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r--drivers/dma/pch_dma.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dma/pch_dma.c b/drivers/dma/pch_dma.c
index df95727dc2fb..b8d858c7a7a5 100644
--- a/drivers/dma/pch_dma.c
+++ b/drivers/dma/pch_dma.c
@@ -439,9 +439,8 @@ static struct pch_dma_desc *pdc_alloc_desc(struct dma_chan *chan, gfp_t flags)
439 struct pch_dma *pd = to_pd(chan->device); 439 struct pch_dma *pd = to_pd(chan->device);
440 dma_addr_t addr; 440 dma_addr_t addr;
441 441
442 desc = pci_pool_alloc(pd->pool, flags, &addr); 442 desc = pci_pool_zalloc(pd->pool, flags, &addr);
443 if (desc) { 443 if (desc) {
444 memset(desc, 0, sizeof(struct pch_dma_desc));
445 INIT_LIST_HEAD(&desc->tx_list); 444 INIT_LIST_HEAD(&desc->tx_list);
446 dma_async_tx_descriptor_init(&desc->txd, chan); 445 dma_async_tx_descriptor_init(&desc->txd, chan);
447 desc->txd.tx_submit = pd_tx_submit; 446 desc->txd.tx_submit = pd_tx_submit;