aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/dma/imx-dma.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c
index 7d08ab7ff444..f28583370d00 100644
--- a/drivers/dma/imx-dma.c
+++ b/drivers/dma/imx-dma.c
@@ -859,8 +859,7 @@ static struct dma_async_tx_descriptor *imxdma_prep_dma_cyclic(
859 859
860 desc = list_first_entry(&imxdmac->ld_free, struct imxdma_desc, node); 860 desc = list_first_entry(&imxdmac->ld_free, struct imxdma_desc, node);
861 861
862 if (imxdmac->sg_list) 862 kfree(imxdmac->sg_list);
863 kfree(imxdmac->sg_list);
864 863
865 imxdmac->sg_list = kcalloc(periods + 1, 864 imxdmac->sg_list = kcalloc(periods + 1,
866 sizeof(struct scatterlist), GFP_KERNEL); 865 sizeof(struct scatterlist), GFP_KERNEL);