pwm-backlight: Improve readability
authorThierry Reding <treding@nvidia.com>
Mon, 7 Oct 2013 09:30:50 +0000 (11:30 +0200)
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>
Wed, 28 Mar 2018 16:39:43 +0000 (18:39 +0200)
Add more blank lines to increase readability. While at it, remove a
trailing blank line at the end of the file.

Signed-off-by: Thierry Reding <treding@nvidia.com>
(cherry picked from commit 668e63c6701d486c68b49ffffc0e5b7de1a2e95c)

drivers/video/backlight/pwm_bl.c

index 36db5d98dd2f5e900d9dafe3bd6e0e10b30e082e..ab6f4ca695cf63e3869ee8c0b4cb36d7a5815943 100644 (file)
@@ -269,8 +269,10 @@ static int pwm_backlight_remove(struct platform_device *pdev)
        backlight_device_unregister(bl);
        pwm_config(pb->pwm, 0, pb->period);
        pwm_disable(pb->pwm);
+
        if (pb->exit)
                pb->exit(&pdev->dev);
+
        return 0;
 }
 
@@ -282,10 +284,13 @@ static int pwm_backlight_suspend(struct device *dev)
 
        if (pb->notify)
                pb->notify(pb->dev, 0);
+
        pwm_config(pb->pwm, 0, pb->period);
        pwm_disable(pb->pwm);
+
        if (pb->notify_after)
                pb->notify_after(pb->dev, 0);
+
        return 0;
 }
 
@@ -294,6 +299,7 @@ static int pwm_backlight_resume(struct device *dev)
        struct backlight_device *bl = dev_get_drvdata(dev);
 
        backlight_update_status(bl);
+
        return 0;
 }
 #endif
@@ -317,4 +323,3 @@ module_platform_driver(pwm_backlight_driver);
 MODULE_DESCRIPTION("PWM based Backlight Driver");
 MODULE_LICENSE("GPL");
 MODULE_ALIAS("platform:pwm-backlight");
-