aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2012-12-17 19:00:11 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-12-17 20:15:14 -0500
commit20c5a93210e9146c16041e46150b1e54f77b983d (patch)
tree8691027f299548607feb70d12e8248da5bd56b53 /drivers/video
parentf0f13cd0918a8a0d4d378727135922691a2981fe (diff)
backlight: 88pm860x_bl: fix checkpatch warning
This patch fixes the checkpatch warning as below: WARNING: quoted string split across lines 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/88pm860x_bl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/backlight/88pm860x_bl.c b/drivers/video/backlight/88pm860x_bl.c
index b7ec34c57f46..6e509d995093 100644
--- a/drivers/video/backlight/88pm860x_bl.c
+++ b/drivers/video/backlight/88pm860x_bl.c
@@ -117,8 +117,8 @@ static int pm860x_backlight_set(struct backlight_device *bl, int brightness)
117 data->current_brightness = value; 117 data->current_brightness = value;
118 return 0; 118 return 0;
119out: 119out:
120 dev_dbg(chip->dev, "set brightness %d failure with return " 120 dev_dbg(chip->dev, "set brightness %d failure with return value: %d\n",
121 "value:%d\n", value, ret); 121 value, ret);
122 return ret; 122 return ret;
123} 123}
124 124