Re: [PATCH] staging: sm750fb: Fix printk() style warning

2016-10-13 Thread Edward Lipinsky
On Thu, Oct 13, 2016 at 05:39:22PM +0300, Mike Rapoport wrote: > On Mon, Oct 10, 2016 at 07:31:46AM -0700, Edward Lipinsky wrote: > > > > Thanks, that makes sense. I tried deleting the if statement and printk() > > from ddk750_help.c, and adding the following in lyn

Re: [PATCH] staging: sm750fb: Fix printk() style warning

2016-10-13 Thread Edward Lipinsky
On Thu, Oct 13, 2016 at 05:39:22PM +0300, Mike Rapoport wrote: > On Mon, Oct 10, 2016 at 07:31:46AM -0700, Edward Lipinsky wrote: > > > > Thanks, that makes sense. I tried deleting the if statement and printk() > > from ddk750_help.c, and adding the following in lyn

Re: [PATCH] staging: sm750fb: Fix printk() style warning

2016-10-10 Thread Edward Lipinsky
On Fri, Oct 07, 2016 at 11:12:04AM +0200, Mike Rapoport wrote: > On Thu, Oct 06, 2016 at 09:27:36PM -0700, Edward Lipinsky wrote: > > On Sun, Oct 02, 2016 at 08:13:01PM +0200, Greg KH wrote: > > > On Sun, Oct 02, 2016 at 11:05:05AM -0700, Edward Lipinsky wrote: > &

Re: [PATCH] staging: sm750fb: Fix printk() style warning

2016-10-10 Thread Edward Lipinsky
On Fri, Oct 07, 2016 at 11:12:04AM +0200, Mike Rapoport wrote: > On Thu, Oct 06, 2016 at 09:27:36PM -0700, Edward Lipinsky wrote: > > On Sun, Oct 02, 2016 at 08:13:01PM +0200, Greg KH wrote: > > > On Sun, Oct 02, 2016 at 11:05:05AM -0700, Edward Lipinsky wrote: > &

Re: [PATCH] staging: sm750fb: Fix printk() style warning

2016-10-06 Thread Edward Lipinsky
On Sun, Oct 02, 2016 at 08:13:01PM +0200, Greg KH wrote: > On Sun, Oct 02, 2016 at 11:05:05AM -0700, Edward Lipinsky wrote: > > This patch fixes the checkpatch.pl warning: > > > > WARNING: printk() should include KERN_ facility level > > > > Signed-off-by: Edwa

Re: [PATCH] staging: sm750fb: Fix printk() style warning

2016-10-06 Thread Edward Lipinsky
On Sun, Oct 02, 2016 at 08:13:01PM +0200, Greg KH wrote: > On Sun, Oct 02, 2016 at 11:05:05AM -0700, Edward Lipinsky wrote: > > This patch fixes the checkpatch.pl warning: > > > > WARNING: printk() should include KERN_ facility level > > > > Signed-off-by: Edwa

[PATCH] staging: sm750fb: Fix printk() style warning

2016-10-02 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: printk() should include KERN_ facility level Signed-off-by: Edward Lipinsky <ellipin...@gmail.com> --- drivers/staging/sm750fb/ddk750_help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/s

[PATCH] staging: sm750fb: Fix printk() style warning

2016-10-02 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: printk() should include KERN_ facility level Signed-off-by: Edward Lipinsky --- drivers/staging/sm750fb/ddk750_help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/sm750fb/ddk750_help.c b/drivers

[PATCH] staging: vt6656: Fix block comment style

2016-07-30 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warnings: WARNING: Block comments use * on subsequent lines WARNING: Block comments use a trailing */ on a separate line Signed-off-by: Edward Lipinsky <ellipin...@gmail.com> --- drivers/staging/vt6656/card.c | 7 +-- 1 file changed, 5 insertions

[PATCH] staging: vt6656: Fix block comment style

2016-07-30 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warnings: WARNING: Block comments use * on subsequent lines WARNING: Block comments use a trailing */ on a separate line Signed-off-by: Edward Lipinsky --- drivers/staging/vt6656/card.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git

[PATCH] staging: sm750fb: Fix block comment style

2016-07-23 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: Block comments use * on subsequent lines Signed-off-by: Edward Lipinsky <ellipin...@gmail.com> --- drivers/staging/sm750fb/ddk750_dvi.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/staging/s

[PATCH] staging: sm750fb: Fix block comment style

2016-07-23 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: Block comments use * on subsequent lines Signed-off-by: Edward Lipinsky --- drivers/staging/sm750fb/ddk750_dvi.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/staging/sm750fb/ddk750_dvi.c b/drivers

[PATCHv2] staging: rtl8723au: Fix line longer than 80 columns.

2016-03-12 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Edward Lipinsky <ellipin...@gmail.com> --- Change in v2: - Break the line after the format string, as suggested by Joe Perches <j...@perches.com>. drivers/staging/rt

[PATCHv2] staging: rtl8723au: Fix line longer than 80 columns.

2016-03-12 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Edward Lipinsky --- Change in v2: - Break the line after the format string, as suggested by Joe Perches . drivers/staging/rtl8723au/core/rtw_ap.c |3 ++- 1 file changed, 2

Re: [PATCH] staging: rtl8723au: Fix line longer than 80 columns.

2016-03-01 Thread Edward Lipinsky
On Sat, Feb 27, 2016 at 10:48:56AM -0800, Joe Perches wrote: > On Sat, 2016-02-27 at 10:28 -0800, Edward Lipinsky wrote: > > This patch fixes the checkpatch.pl warning: > > WARNING: line over 80 characters > [] > > diff --git a/drivers/staging/rtl8723au/core/rtw_ap.

Re: [PATCH] staging: rtl8723au: Fix line longer than 80 columns.

2016-03-01 Thread Edward Lipinsky
On Sat, Feb 27, 2016 at 10:48:56AM -0800, Joe Perches wrote: > On Sat, 2016-02-27 at 10:28 -0800, Edward Lipinsky wrote: > > This patch fixes the checkpatch.pl warning: > > WARNING: line over 80 characters > [] > > diff --git a/drivers/staging/rtl8723au/core/rtw_ap.

[PATCH] staging: rtl8723au: Fix line longer than 80 columns.

2016-02-27 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Edward Lipinsky <ellipin...@gmail.com> --- drivers/staging/rtl8723au/core/rtw_ap.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723au/core/rtw_a

[PATCH] staging: rtl8723au: Fix line longer than 80 columns.

2016-02-27 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Edward Lipinsky --- drivers/staging/rtl8723au/core/rtw_ap.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rtl8723au

[PATCH] Staging: rtl8723au: hal: Remove trailing whitespace in odm.c

2015-04-18 Thread Edward Lipinsky
This patch fixes the checkpatch.pl error: ERROR: trailing whitespace Signed-off-by: Edward Lipinsky --- drivers/staging/rtl8723au/hal/odm.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723au/hal/odm.c b/drivers/staging/rtl8723au/hal/odm.c index

[PATCH] Staging: rtl8723au: hal: Remove trailing whitespace in odm.c

2015-04-18 Thread Edward Lipinsky
This patch fixes the checkpatch.pl error: ERROR: trailing whitespace Signed-off-by: Edward Lipinsky ellipin...@gmail.com --- drivers/staging/rtl8723au/hal/odm.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723au/hal/odm.c b/drivers/staging

[PATCH] staging: lustre: lnet: lnet: Remove unneeded braces in lib-eq.c

2015-02-21 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Edward Lipinsky --- drivers/staging/lustre/lnet/lnet/lib-eq.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/lustre/lnet/lnet

[PATCH] staging: lustre: lnet: lnet: Remove unneeded braces in lib-eq.c

2015-02-21 Thread Edward Lipinsky
This patch fixes the checkpatch.pl warning: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Edward Lipinsky ellipin...@gmail.com --- drivers/staging/lustre/lnet/lnet/lib-eq.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging