public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: change to use kmalloc
@ 2015-11-11  4:23 yalin wang
  2015-11-11 17:02 ` Alim Akhtar
  0 siblings, 1 reply; 5+ messages in thread
From: yalin wang @ 2015-11-11  4:23 UTC (permalink / raw)
  To: ulf.hansson, adrian.hunter, ben, jh80.chung, asaf.vertz, tklauser,
	jonathanh, JBottomley, grundler, linux-mmc, linux-kernel
  Cc: yalin wang

Use kmalloc instead of kzalloc, zero the memory is not needed.

Signed-off-by: yalin wang <yalin.wang2010@gmail.com>
---
 drivers/mmc/card/block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 23b6c8e..975cd3e 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -365,7 +365,7 @@ static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
 	if (!idata->buf_bytes)
 		return idata;
 
-	idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
+	idata->buf = kmalloc(idata->buf_bytes, GFP_KERNEL);
 	if (!idata->buf) {
 		err = -ENOMEM;
 		goto idata_err;
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-11-12 11:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-11  4:23 [PATCH] mmc: change to use kmalloc yalin wang
2015-11-11 17:02 ` Alim Akhtar
2015-11-11 21:17   ` Peter Hurley
2015-11-11 21:57     ` Andy Shevchenko
2015-11-12 11:27       ` yalin wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox