All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] video: Remove kfree call since devm_kzalloc() is used
@ 2014-06-20 21:50 ` Emil Goode
  0 siblings, 0 replies; 4+ messages in thread
From: Emil Goode @ 2014-06-20 21:50 UTC (permalink / raw)
  To: Jean-Christophe Plagniol-Villard, Tomi Valkeinen, Jingoo Han,
	H Hartley Sweeten
  Cc: linux-fbdev, linux-kernel, kernel-janitors, Emil Goode

We use devm_kzalloc() to allocate memory for the struct vt8500lcd_info
pointer fbi, so there is no need to free it in vt8500lcd_remove().

Signed-off-by: Emil Goode <emilgoode@gmail.com>
---
 drivers/video/fbdev/vt8500lcdfb.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/video/fbdev/vt8500lcdfb.c b/drivers/video/fbdev/vt8500lcdfb.c
index a8f2b28..a1134c3 100644
--- a/drivers/video/fbdev/vt8500lcdfb.c
+++ b/drivers/video/fbdev/vt8500lcdfb.c
@@ -474,8 +474,6 @@ static int vt8500lcd_remove(struct platform_device *pdev)
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	release_mem_region(res->start, resource_size(res));
 
-	kfree(fbi);
-
 	return 0;
 }
 
-- 
1.7.10.4


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

end of thread, other threads:[~2014-06-23 11:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-20 21:50 [PATCH] video: Remove kfree call since devm_kzalloc() is used Emil Goode
2014-06-20 21:50 ` Emil Goode
2014-06-23 11:11 ` Tomi Valkeinen
2014-06-23 11:11   ` Tomi Valkeinen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.