aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2012-12-17 19:00:30 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-12-17 20:15:15 -0500
commitae872dbba92efbbaa7486fe84326427a66ed8335 (patch)
treeb77ed47b2bc8ecd0175a7f50b2c0f09dd46a8f45 /drivers/video
parent7a94f653edd964f2d3d2266212dc4e86cf47ed32 (diff)
backlight: pcf50633: fix checkpatch warning
This patch fixes the checkpatch warning as below: WARNING: please, no spaces at the start of a line Also, long comments are fixed for the preferred style. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Cc: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/backlight/pcf50633-backlight.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/video/backlight/pcf50633-backlight.c b/drivers/video/backlight/pcf50633-backlight.c
index 0087396007e..e87c7a3394f 100644
--- a/drivers/video/backlight/pcf50633-backlight.c
+++ b/drivers/video/backlight/pcf50633-backlight.c
@@ -52,7 +52,7 @@ int pcf50633_bl_set_brightness_limit(struct pcf50633 *pcf, unsigned int limit)
52 pcf_bl->brightness_limit = limit & 0x3f; 52 pcf_bl->brightness_limit = limit & 0x3f;
53 backlight_update_status(pcf_bl->bl); 53 backlight_update_status(pcf_bl->bl);
54 54
55 return 0; 55 return 0;
56} 56}
57 57
58static int pcf50633_bl_update_status(struct backlight_device *bl) 58static int pcf50633_bl_update_status(struct backlight_device *bl)
@@ -136,8 +136,10 @@ static int pcf50633_bl_probe(struct platform_device *pdev)
136 136
137 pcf50633_reg_write(pcf_bl->pcf, PCF50633_REG_LEDDIM, pdata->ramp_time); 137 pcf50633_reg_write(pcf_bl->pcf, PCF50633_REG_LEDDIM, pdata->ramp_time);
138 138
139 /* Should be different from bl_props.brightness, so we do not exit 139 /*
140 * update_status early the first time it's called */ 140 * Should be different from bl_props.brightness, so we do not exit
141 * update_status early the first time it's called
142 */
141 pcf_bl->brightness = pcf_bl->bl->props.brightness + 1; 143 pcf_bl->brightness = pcf_bl->bl->props.brightness + 1;
142 144
143 backlight_update_status(pcf_bl->bl); 145 backlight_update_status(pcf_bl->bl);