Browse Source

video: vt8500lcdfb: Remove kfree call since devm_kzalloc() is used

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>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Emil Goode 11 years ago
parent
commit
74c0554ac7
1 changed files with 0 additions and 2 deletions
  1. 0 2
      drivers/video/fbdev/vt8500lcdfb.c

+ 0 - 2
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;
 }