All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/2] staging: checkpatch cleanups
@ 2017-03-13 20:19 Arushi Singhal
  2017-03-13 20:19 ` [PATCH v3 1/2] staging: speakup: identation should use tabs Arushi Singhal
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Arushi Singhal @ 2017-03-13 20:19 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, outreachy-kernel, kirk, samuel.thibault, gregkh, speakup,
	devel, linux-kernel, Arushi Singhal

Improve readability by fixing multiple checkpatch.pl
issues in drivers. 

Arushi Singhal (2):
  staging: speakup: identation should use tabs
  staging: dvb-frontends: removed code in comments.

 drivers/media/dvb-frontends/drxk_hard.c  |   1 -
 drivers/staging/speakup/speakup_dtlk.h   |  10 +++++-----
 2 files changed, 5 insertions(+), 6 deletions(-)

-- 
Changes since v3:
 -change the subject of cover letter.

2.11.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v3 1/2] staging: speakup: identation should use tabs
  2017-03-13 20:19 [PATCH v3 0/2] staging: checkpatch cleanups Arushi Singhal
@ 2017-03-13 20:19 ` Arushi Singhal
  2017-03-13 22:05   ` Greg KH
  2017-03-13 20:19 ` [PATCH v3 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
  2017-03-13 22:05 ` [PATCH v3 0/2] staging: checkpatch cleanups Greg KH
  2 siblings, 1 reply; 8+ messages in thread
From: Arushi Singhal @ 2017-03-13 20:19 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, outreachy-kernel, kirk, samuel.thibault, gregkh, speakup,
	devel, linux-kernel, Arushi Singhal

Indentation should always use tabs and never spaces.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
---
 drivers/staging/speakup/speakup_dtlk.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/speakup/speakup_dtlk.h b/drivers/staging/speakup/speakup_dtlk.h
index b3b3cfc3db07..46d885fcfb20 100644
--- a/drivers/staging/speakup/speakup_dtlk.h
+++ b/drivers/staging/speakup/speakup_dtlk.h
@@ -24,11 +24,11 @@
 				 * usec later.
 				 */
 #define TTS_ALMOST_FULL	0x08	/* mask for AF bit: When set to 1,
-				         * indicates that less than 300 bytes
-				         * are available in the TTS input
-				         * buffer. AF is always 0 in the PCM,
-				         * TGN and CVSD modes.
-				         */
+					 * indicates that less than 300 bytes
+					 * are available in the TTS input
+					 * buffer. AF is always 0 in the PCM,
+					 * TGN and CVSD modes.
+					 */
 #define TTS_ALMOST_EMPTY 0x04	/* mask for AE bit: When set to 1,
 				 * indicates that less than 300 bytes
 				 * are remaining in DoubleTalk's input
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v3 2/2] staging: dvb-frontends: removed code in comments.
  2017-03-13 20:19 [PATCH v3 0/2] staging: checkpatch cleanups Arushi Singhal
  2017-03-13 20:19 ` [PATCH v3 1/2] staging: speakup: identation should use tabs Arushi Singhal
@ 2017-03-13 20:19 ` Arushi Singhal
  2017-03-13 22:05 ` [PATCH v3 0/2] staging: checkpatch cleanups Greg KH
  2 siblings, 0 replies; 8+ messages in thread
From: Arushi Singhal @ 2017-03-13 20:19 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, outreachy-kernel, kirk, samuel.thibault, gregkh, speakup,
	devel, linux-kernel, Arushi Singhal

Commenting out Code is a Bad Idea.
Comments are their to explain the code and how the code achieves its
goal and as codes in the comments  does not explain what the code is
doing so there is no use of commenting them.
So in this patch codes in the comments are removed.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
---
 changes in v3
 - Improve the commit message

 drivers/media/dvb-frontends/drxk_hard.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/dvb-frontends/drxk_hard.c b/drivers/media/dvb-frontends/drxk_hard.c
index 7e1bbbaad625..2fe493768003 100644
--- a/drivers/media/dvb-frontends/drxk_hard.c
+++ b/drivers/media/dvb-frontends/drxk_hard.c
@@ -5283,7 +5283,6 @@ static int qam_set_symbolrate(struct drxk_state *state)
 	/* Select & calculate correct IQM rate */
 	adc_frequency = (state->m_sys_clock_freq * 1000) / 3;
 	ratesel = 0;
-	/* printk(KERN_DEBUG "drxk: SR %d\n", state->props.symbol_rate); */
 	if (state->props.symbol_rate <= 1188750)
 		ratesel = 3;
 	else if (state->props.symbol_rate <= 2377500)
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 1/2] staging: speakup: identation should use tabs
  2017-03-13 20:19 ` [PATCH v3 1/2] staging: speakup: identation should use tabs Arushi Singhal
@ 2017-03-13 22:05   ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2017-03-13 22:05 UTC (permalink / raw)
  To: Arushi Singhal
  Cc: w.d.hubbs, devel, kirk, speakup, linux-kernel, outreachy-kernel,
	samuel.thibault, chris

On Tue, Mar 14, 2017 at 01:49:54AM +0530, Arushi Singhal wrote:
> Indentation should always use tabs and never spaces.
> 
> Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
> ---
>  drivers/staging/speakup/speakup_dtlk.h | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

What changed from v2?

Always list it, even if nothing changed...

thanks,

greg k-h


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 0/2] staging: checkpatch cleanups
  2017-03-13 20:19 [PATCH v3 0/2] staging: checkpatch cleanups Arushi Singhal
  2017-03-13 20:19 ` [PATCH v3 1/2] staging: speakup: identation should use tabs Arushi Singhal
  2017-03-13 20:19 ` [PATCH v3 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
@ 2017-03-13 22:05 ` Greg KH
  2017-03-16  6:32   ` Arushi Singhal
  2 siblings, 1 reply; 8+ messages in thread
From: Greg KH @ 2017-03-13 22:05 UTC (permalink / raw)
  To: Arushi Singhal
  Cc: w.d.hubbs, devel, kirk, speakup, linux-kernel, outreachy-kernel,
	samuel.thibault, chris

On Tue, Mar 14, 2017 at 01:49:52AM +0530, Arushi Singhal wrote:
> Improve readability by fixing multiple checkpatch.pl
> issues in drivers. 
> 
> Arushi Singhal (2):
>   staging: speakup: identation should use tabs
>   staging: dvb-frontends: removed code in comments.

What changed from v2?

thanks,

greg k-h


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 0/2] staging: checkpatch cleanups
  2017-03-13 22:05 ` [PATCH v3 0/2] staging: checkpatch cleanups Greg KH
@ 2017-03-16  6:32   ` Arushi Singhal
  2017-03-16  7:02       ` Greg KH
  0 siblings, 1 reply; 8+ messages in thread
From: Arushi Singhal @ 2017-03-16  6:32 UTC (permalink / raw)
  To: Greg KH
  Cc: William Hubbs, devel, Kirk Reiser, speakup, linux-kernel,
	outreachy-kernel, Samuel Thibault, Chris Brannon

[-- Attachment #1: Type: text/plain, Size: 528 bytes --]

On Tue, Mar 14, 2017 at 3:35 AM, Greg KH <gregkh@linuxfoundation.org> wrote:

> On Tue, Mar 14, 2017 at 01:49:52AM +0530, Arushi Singhal wrote:
> > Improve readability by fixing multiple checkpatch.pl
> > issues in drivers.
> >
> > Arushi Singhal (2):
> >   staging: speakup: identation should use tabs
> >   staging: dvb-frontends: removed code in comments.
>
> What changed from v2?
>
 In this patch nothing is changed from v2 but it is a patch series so have
to write v2 everywhere.
Thanks
Arushi

>
> thanks,
>
> greg k-h
>

[-- Attachment #2: Type: text/html, Size: 1290 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 0/2] staging: checkpatch cleanups
  2017-03-16  6:32   ` Arushi Singhal
@ 2017-03-16  7:02       ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2017-03-16  7:02 UTC (permalink / raw)
  To: Arushi Singhal
  Cc: William Hubbs, devel, Kirk Reiser, speakup, linux-kernel,
	outreachy-kernel, Samuel Thibault, Chris Brannon

On Thu, Mar 16, 2017 at 12:02:25PM +0530, Arushi Singhal wrote:
> 
> 
> On Tue, Mar 14, 2017 at 3:35 AM, Greg KH <gregkh@linuxfoundation.org> wrote:
> 
>     On Tue, Mar 14, 2017 at 01:49:52AM +0530, Arushi Singhal wrote:
>     > Improve readability by fixing multiple checkpatch.pl
>     > issues in drivers.
>     >
>     > Arushi Singhal (2):
>     >   staging: speakup: identation should use tabs
>     >   staging: dvb-frontends: removed code in comments.
> 
>     What changed from v2?
> 
>  In this patch nothing is changed from v2 but it is a patch series so have to
> write v2 everywhere.

And everywhere you also need to say why it is v2, otherwise we have no
idea :(

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 0/2] staging: checkpatch cleanups
@ 2017-03-16  7:02       ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2017-03-16  7:02 UTC (permalink / raw)
  To: Arushi Singhal
  Cc: William Hubbs, devel, Kirk Reiser, speakup, linux-kernel,
	outreachy-kernel, Samuel Thibault, Chris Brannon

On Thu, Mar 16, 2017 at 12:02:25PM +0530, Arushi Singhal wrote:
> 
> 
> On Tue, Mar 14, 2017 at 3:35 AM, Greg KH <gregkh@linuxfoundation.org> wrote:
> 
>     On Tue, Mar 14, 2017 at 01:49:52AM +0530, Arushi Singhal wrote:
>     > Improve readability by fixing multiple checkpatch.pl
>     > issues in drivers.
>     >
>     > Arushi Singhal (2):
>     >� �staging: speakup: identation should use tabs
>     >� �staging: dvb-frontends: removed code in comments.
> 
>     What changed from v2?
> 
> �In this patch nothing is changed from v2 but it is a patch series so have to
> write v2 everywhere.

And everywhere you also need to say why it is v2, otherwise we have no
idea :(

thanks,

greg k-h


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-16  7:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-13 20:19 [PATCH v3 0/2] staging: checkpatch cleanups Arushi Singhal
2017-03-13 20:19 ` [PATCH v3 1/2] staging: speakup: identation should use tabs Arushi Singhal
2017-03-13 22:05   ` Greg KH
2017-03-13 20:19 ` [PATCH v3 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
2017-03-13 22:05 ` [PATCH v3 0/2] staging: checkpatch cleanups Greg KH
2017-03-16  6:32   ` Arushi Singhal
2017-03-16  7:02     ` Greg KH
2017-03-16  7:02       ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.