Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1614264 > unrolled thread
| Started by | Prasant Jalan <prasant.jalan@gmail.com> |
|---|---|
| First post | 2017-03-31 21:20 +0200 |
| Last post | 2017-04-03 20:00 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 2/2] staging: sm750fb: removed line continuations in quoted strings Prasant Jalan <prasant.jalan@gmail.com> - 2017-03-31 21:20 +0200
Re: [PATCH 2/2] staging: sm750fb: removed line continuations in quoted strings Prasant Jalan <prasant.jalan@gmail.com> - 2017-04-03 18:40 +0200
Re: [PATCH 2/2] staging: sm750fb: removed line continuations in quoted strings Greg KH <gregkh@linuxfoundation.org> - 2017-04-03 20:00 +0200
| From | Prasant Jalan <prasant.jalan@gmail.com> |
|---|---|
| Date | 2017-03-31 21:20 +0200 |
| Subject | [PATCH 2/2] staging: sm750fb: removed line continuations in quoted strings |
| Message-ID | <trafv-iO-5@gated-at.bofh.it> |
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: Prasant Jalan <prasant.jalan@gmail.com>
---
drivers/staging/sm750fb/sm750.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c
index 445c68d..386d4ad 100644
--- a/drivers/staging/sm750fb/sm750.c
+++ b/drivers/staging/sm750fb/sm750.c
@@ -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 */
- pr_info("Member of info->var is :\n\
- xres=%d\n\
- yres=%d\n\
- xres_virtual=%d\n\
- yres_virtual=%d\n\
- xoffset=%d\n\
- yoffset=%d\n\
- bits_per_pixel=%d\n \
- ...\n",
+ pr_info("Member of info->var is :\n"
+ "xres=%d\n"
+ "yres=%d\n"
+ "xres_virtual=%d\n"
+ "yres_virtual=%d\n"
+ "xoffset=%d\n"
+ "yoffset=%d\n"
+ "bits_per_pixel=%d\n"
+ " ...\n",
var->xres,
var->yres,
var->xres_virtual,
--
2.7.4
[toc] | [next] | [standalone]
| From | Prasant Jalan <prasant.jalan@gmail.com> |
|---|---|
| Date | 2017-04-03 18:40 +0200 |
| Subject | Re: [PATCH 2/2] staging: sm750fb: removed line continuations in quoted strings |
| Message-ID | <tsdbj-RK-17@gated-at.bofh.it> |
| In reply to | #1614264 |
On Sat, Apr 1, 2017 at 12:40 AM, Prasant Jalan <prasant.jalan@gmail.com> wrote:
> 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: Prasant Jalan <prasant.jalan@gmail.com>
> ---
> drivers/staging/sm750fb/sm750.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c
> index 445c68d..386d4ad 100644
> --- a/drivers/staging/sm750fb/sm750.c
> +++ b/drivers/staging/sm750fb/sm750.c
> @@ -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 */
>
> - pr_info("Member of info->var is :\n\
> - xres=%d\n\
> - yres=%d\n\
> - xres_virtual=%d\n\
> - yres_virtual=%d\n\
> - xoffset=%d\n\
> - yoffset=%d\n\
> - bits_per_pixel=%d\n \
> - ...\n",
> + pr_info("Member of info->var is :\n"
> + "xres=%d\n"
> + "yres=%d\n"
> + "xres_virtual=%d\n"
> + "yres_virtual=%d\n"
> + "xoffset=%d\n"
> + "yoffset=%d\n"
> + "bits_per_pixel=%d\n"
> + " ...\n",
> var->xres,
> var->yres,
> var->xres_virtual,
> --
> 2.7.4
>
Hi All,
A gentle reminder for my patches.
Any comments or updates will be helpful!
Regards, Prasant
[toc] | [prev] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-04-03 20:00 +0200 |
| Subject | Re: [PATCH 2/2] staging: sm750fb: removed line continuations in quoted strings |
| Message-ID | <tseqK-1BV-21@gated-at.bofh.it> |
| In reply to | #1615406 |
On Mon, Apr 03, 2017 at 10:03:34PM +0530, Prasant Jalan wrote: > On Sat, Apr 1, 2017 at 12:40 AM, Prasant Jalan <prasant.jalan@gmail.com> wrote: <snip> > A gentle reminder for my patches. > Any comments or updates will be helpful! 2 days, over a weekend, for a coding style change is pretty fast, don't you agree? I will get to these eventually, usually every other week I flush them all out. Please be patient, don't worry, the patch is not lost. thanks, greg k-h
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web