linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] checkpatch cleanups
@ 2017-03-10 15:46 Arushi Singhal
  2017-03-10 15:46 ` [PATCH 1/2] staging: speakup: identation should use tabs Arushi Singhal
  2017-03-10 15:46 ` [PATCH 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
  0 siblings, 2 replies; 4+ messages in thread
From: Arushi Singhal @ 2017-03-10 15:46 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 speakup driver.

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(-)

-- 
2.11.0

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

* [PATCH 1/2] staging: speakup: identation should use tabs
  2017-03-10 15:46 [PATCH 0/2] checkpatch cleanups Arushi Singhal
@ 2017-03-10 15:46 ` Arushi Singhal
  2017-03-10 15:46 ` [PATCH 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
  1 sibling, 0 replies; 4+ messages in thread
From: Arushi Singhal @ 2017-03-10 15:46 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] 4+ messages in thread

* [PATCH 2/2] staging: dvb-frontends: removed code in comments.
  2017-03-10 15:46 [PATCH 0/2] checkpatch cleanups Arushi Singhal
  2017-03-10 15:46 ` [PATCH 1/2] staging: speakup: identation should use tabs Arushi Singhal
@ 2017-03-10 15:46 ` Arushi Singhal
  2017-03-12 14:24   ` Greg KH
  1 sibling, 1 reply; 4+ messages in thread
From: Arushi Singhal @ 2017-03-10 15:46 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, outreachy-kernel, kirk, samuel.thibault, gregkh, speakup,
	devel, linux-kernel, Arushi Singhal

Commenting 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>
---
 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] 4+ messages in thread

* Re: [PATCH 2/2] staging: dvb-frontends: removed code in comments.
  2017-03-10 15:46 ` [PATCH 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
@ 2017-03-12 14:24   ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2017-03-12 14:24 UTC (permalink / raw)
  To: Arushi Singhal
  Cc: w.d.hubbs, devel, kirk, speakup, linux-kernel, outreachy-kernel,
	samuel.thibault, chris

On Fri, Mar 10, 2017 at 09:16:32PM +0530, Arushi Singhal wrote:
> Commenting Code Is a Bad Idea.

No, "Commenting code is a good idea".  I think you mean "commenting out
code is a bad idea", correct?

And no need for putting the sentance in all caps.

thanks,

greg k-h

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

end of thread, other threads:[~2017-03-12 14:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-10 15:46 [PATCH 0/2] checkpatch cleanups Arushi Singhal
2017-03-10 15:46 ` [PATCH 1/2] staging: speakup: identation should use tabs Arushi Singhal
2017-03-10 15:46 ` [PATCH 2/2] staging: dvb-frontends: removed code in comments Arushi Singhal
2017-03-12 14:24   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).