mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
backlight: Fix error handling
Fix error handling when registering new device Signed-off-by: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
This commit is contained in:
parent
7a208463b2
commit
2fd5a15489
@ -240,13 +240,16 @@ struct backlight_device *backlight_device_register(const char *name,
|
||||
|
||||
rc = class_device_register(&new_bd->class_dev);
|
||||
if (unlikely(rc)) {
|
||||
error: kfree(new_bd);
|
||||
kfree(new_bd);
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
rc = backlight_register_fb(new_bd);
|
||||
if (unlikely(rc))
|
||||
goto error;
|
||||
if (rc) {
|
||||
class_device_unregister(&new_bd->class_dev);
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(bl_class_device_attributes); i++) {
|
||||
rc = class_device_create_file(&new_bd->class_dev,
|
||||
|
@ -206,14 +206,15 @@ struct lcd_device *lcd_device_register(const char *name, void *devdata,
|
||||
|
||||
rc = class_device_register(&new_ld->class_dev);
|
||||
if (unlikely(rc)) {
|
||||
error: kfree(new_ld);
|
||||
kfree(new_ld);
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
rc = lcd_register_fb(new_ld);
|
||||
|
||||
if (unlikely(rc))
|
||||
goto error;
|
||||
if (rc) {
|
||||
class_device_unregister(&new_ld->class_dev);
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(lcd_class_device_attributes); i++) {
|
||||
rc = class_device_create_file(&new_ld->class_dev,
|
||||
|
Loading…
Reference in New Issue
Block a user