Browse Source

video: s3c-fb: fix misleading kfree in remove function

This patch fixes misleading kfree in remove function.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Jingoo Han 14 years ago
parent
commit
72ba4cb608
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/video/s3c-fb.c

+ 1 - 2
drivers/video/s3c-fb.c

@@ -1487,11 +1487,10 @@ static int __devexit s3c_fb_remove(struct platform_device *pdev)
 
 	release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
 
-	kfree(sfb);
-
 	pm_runtime_put_sync(sfb->dev);
 	pm_runtime_disable(sfb->dev);
 
+	kfree(sfb);
 	return 0;
 }