Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54f5968d authored by Levente Kurusa's avatar Levente Kurusa Committed by Linus Torvalds
Browse files

drivers/video/backlight/lcd.c: call put_device if device_register fails



Currently we kfree the container of the device which failed to register.
This is wrong as the last reference is not given up with a put_device
call.  Also, now that we have put_device() callen, we no longer need the
kfree as the new_ld->dev.release function will take care of kfreeing the
associated memory.

Signed-off-by: default avatarLevente Kurusa <levex@linux.com>
Acked-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 07bacb38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -228,7 +228,7 @@ struct lcd_device *lcd_device_register(const char *name, struct device *parent,

	rc = device_register(&new_ld->dev);
	if (rc) {
		kfree(new_ld);
		put_device(&new_ld->dev);
		return ERR_PTR(rc);
	}