[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200123140237.125799-1-tudor.ambarus@microchip.com>
Date: Thu, 23 Jan 2020 14:03:02 +0000
From: <Tudor.Ambarus@...rochip.com>
To: <Ludovic.Desroches@...rochip.com>, <dan.j.williams@...el.com>,
<vkoul@...nel.org>
CC: <dmaengine@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<Tudor.Ambarus@...rochip.com>
Subject: [PATCH 01/10] dmaengine: at_hdmac: Substitute kzalloc with kmalloc
From: Tudor Ambarus <tudor.ambarus@...rochip.com>
All members of the structure are initialized below in the function,
there is no need to use kzalloc.
Signed-off-by: Tudor Ambarus <tudor.ambarus@...rochip.com>
---
drivers/dma/at_hdmac.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
index 672c73b4a2d4..cad6dcd9cfb5 100644
--- a/drivers/dma/at_hdmac.c
+++ b/drivers/dma/at_hdmac.c
@@ -1671,7 +1671,7 @@ static struct dma_chan *at_dma_xlate(struct of_phandle_args *dma_spec,
dma_cap_zero(mask);
dma_cap_set(DMA_SLAVE, mask);
- atslave = kzalloc(sizeof(*atslave), GFP_KERNEL);
+ atslave = kmalloc(sizeof(*atslave), GFP_KERNEL);
if (!atslave)
return NULL;
--
2.23.0
Powered by blists - more mailing lists