Commit 271dbae3 authored by Prasant Jalan's avatar Prasant Jalan Committed by Greg Kroah-Hartman

staging: sm750fb: removed line continuations in quoted strings

checkpatch gives WARNING: Avoid line continuations in quoted strings.

Trivial fix by removing line continuations and adding another quote at
the start of next line.
Signed-off-by: default avatarPrasant Jalan <prasant.jalan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4895398d
...@@ -837,15 +837,15 @@ static int lynxfb_set_fbinfo(struct fb_info *info, int index) ...@@ -837,15 +837,15 @@ static int lynxfb_set_fbinfo(struct fb_info *info, int index)
/* some member of info->var had been set by fb_find_mode */ /* some member of info->var had been set by fb_find_mode */
pr_info("Member of info->var is :\n\ pr_info("Member of info->var is :\n"
xres=%d\n\ "xres=%d\n"
yres=%d\n\ "yres=%d\n"
xres_virtual=%d\n\ "xres_virtual=%d\n"
yres_virtual=%d\n\ "yres_virtual=%d\n"
xoffset=%d\n\ "xoffset=%d\n"
yoffset=%d\n\ "yoffset=%d\n"
bits_per_pixel=%d\n \ "bits_per_pixel=%d\n"
...\n", " ...\n",
var->xres, var->xres,
var->yres, var->yres,
var->xres_virtual, var->xres_virtual,
......
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