backlight: da9052_bl: use devm_backlight_device_register()
authorJingoo Han <[email protected]>
Tue, 12 Nov 2013 23:09:13 +0000 (15:09 -0800)
committerLinus Torvalds <[email protected]>
Wed, 13 Nov 2013 03:09:17 +0000 (12:09 +0900)
Use devm_backlight_device_register() to make cleanup paths simpler.

Signed-off-by: Jingoo Han <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/video/backlight/da9052_bl.c

index 842da5a3ac4f2fde626b7c23ef7975ab01870eec..20d55becaa7434e76704a7a59771ab413014b09f 100644 (file)
@@ -125,8 +125,9 @@ static int da9052_backlight_probe(struct platform_device *pdev)
        props.type = BACKLIGHT_RAW;
        props.max_brightness = DA9052_MAX_BRIGHTNESS;
 
-       bl = backlight_device_register(pdev->name, wleds->da9052->dev, wleds,
-                                      &da9052_backlight_ops, &props);
+       bl = devm_backlight_device_register(&pdev->dev, pdev->name,
+                                       wleds->da9052->dev, wleds,
+                                       &da9052_backlight_ops, &props);
        if (IS_ERR(bl)) {
                dev_err(&pdev->dev, "Failed to register backlight\n");
                return PTR_ERR(bl);
@@ -147,7 +148,6 @@ static int da9052_backlight_remove(struct platform_device *pdev)
        wleds->brightness = 0;
        wleds->state = DA9052_WLEDS_OFF;
        da9052_adjust_wled_brightness(wleds);
-       backlight_device_unregister(bl);
 
        return 0;
 }