Commit 3bcdcc0e authored by Akinobu Mita's avatar Akinobu Mita Committed by Richard Purdie

backlight: hp680_bl - Use platform_device_register_simple()

Use platform_device_register_simple() and also fix error
handling when platform_device_alloc() fails (hp680_bl_driver
is left registered).
Signed-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: default avatarRichard Purdie <rpurdie@linux.intel.com>
parent 9e42d0cf
...@@ -151,19 +151,15 @@ static int __init hp680bl_init(void) ...@@ -151,19 +151,15 @@ static int __init hp680bl_init(void)
int ret; int ret;
ret = platform_driver_register(&hp680bl_driver); ret = platform_driver_register(&hp680bl_driver);
if (!ret) { if (ret)
hp680bl_device = platform_device_alloc("hp680-bl", -1); return ret;
if (!hp680bl_device) hp680bl_device = platform_device_register_simple("hp680-bl", -1,
return -ENOMEM; NULL, 0);
if (IS_ERR(hp680bl_device)) {
ret = platform_device_add(hp680bl_device); platform_driver_unregister(&hp680bl_driver);
return PTR_ERR(hp680bl_device);
if (ret) {
platform_device_put(hp680bl_device);
platform_driver_unregister(&hp680bl_driver);
}
} }
return ret; return 0;
} }
static void __exit hp680bl_exit(void) static void __exit hp680bl_exit(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment