summaryrefslogtreecommitdiffstats
path: root/drivers/video/backlight
diff options
context:
space:
mode:
authorMike Rapoport2008-11-20 00:36:49 +0100
committerLinus Torvalds2008-11-20 03:50:00 +0100
commitf55491a4bcbe8bab337bc00830ca12d703ea2613 (patch)
tree45fa7d8cb2e7448d0a428aca6556a9d437197a2a /drivers/video/backlight
parentcgroups: fix a serious bug in cgroupstats (diff)
downloadkernel-qcow2-linux-f55491a4bcbe8bab337bc00830ca12d703ea2613.tar.gz
kernel-qcow2-linux-f55491a4bcbe8bab337bc00830ca12d703ea2613.tar.xz
kernel-qcow2-linux-f55491a4bcbe8bab337bc00830ca12d703ea2613.zip
drivers/video/backlight/da903x.c: introduce one more missing kfree
One more error handling code should have kfree as well Signed-off-by: Mike Rapoport <mike@compulab.co.il> Acked-by: Eric Miao <eric.miao@marvell.com> Cc: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/backlight')
-rw-r--r--drivers/video/backlight/da903x.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/backlight/da903x.c b/drivers/video/backlight/da903x.c
index 75388b959439..93bb4340cc64 100644
--- a/drivers/video/backlight/da903x.c
+++ b/drivers/video/backlight/da903x.c
@@ -131,6 +131,7 @@ static int da903x_backlight_probe(struct platform_device *pdev)
data, &da903x_backlight_ops);
if (IS_ERR(bl)) {
dev_err(&pdev->dev, "failed to register backlight\n");
+ kfree(data);
return PTR_ERR(bl);
}