All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] staging: speakup: checkpatch modifications
@ 2016-11-19 16:50 Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 1/3] staging: speakup: varhandlers.c Comment style modifications Walt Feasel
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Walt Feasel @ 2016-11-19 16:50 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, kirk, samuel.thibault, gregkh, speakup, devel,
	linux-kernel, Walt Feasel

Make Linux kernel style modifications for speakup to include:

Comment style modifications
Align parenthesis
Correct email in TODO

Walt Feasel (3):
  staging: speakup: varhandlers.c Comment style modifications
  staging: speakup: varhandlers.c Align parenthesis
  staging: speakup: TODO Correct email

 drivers/staging/speakup/TODO          | 2 +-
 drivers/staging/speakup/varhandlers.c | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

-- 
v2 makes changes to correct for email format patch submission
2.1.4

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

* [PATCH v2 1/3] staging: speakup: varhandlers.c Comment style modifications
  2016-11-19 16:50 [PATCH v2 0/3] staging: speakup: checkpatch modifications Walt Feasel
@ 2016-11-19 16:50 ` Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 2/3] staging: speakup: varhandlers.c Align parenthesis Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 3/3] staging: speakup: TODO Correct email Walt Feasel
  2 siblings, 0 replies; 5+ messages in thread
From: Walt Feasel @ 2016-11-19 16:50 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, kirk, samuel.thibault, gregkh, speakup, devel,
	linux-kernel, Walt Feasel

Make modifications to comment style

Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
---
v2 makes changes to correct for email format patch submission

 drivers/staging/speakup/varhandlers.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/speakup/varhandlers.c b/drivers/staging/speakup/varhandlers.c
index 21186e3..5ab7245 100644
--- a/drivers/staging/speakup/varhandlers.c
+++ b/drivers/staging/speakup/varhandlers.c
@@ -266,7 +266,8 @@ int spk_set_string_var(const char *page, struct st_var_header *var, int len)
 	return 0;
 }
 
-/* spk_set_mask_bits sets or clears the punc/delim/repeat bits,
+/*
+ * spk_set_mask_bits sets or clears the punc/delim/repeat bits,
  * if input is null uses the defaults.
  * values for how: 0 clears bits of chars supplied,
  * 1 clears allk, 2 sets bits for chars
-- 
2.1.4

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

* [PATCH v2 2/3] staging: speakup: varhandlers.c Align parenthesis
  2016-11-19 16:50 [PATCH v2 0/3] staging: speakup: checkpatch modifications Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 1/3] staging: speakup: varhandlers.c Comment style modifications Walt Feasel
@ 2016-11-19 16:50 ` Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 3/3] staging: speakup: TODO Correct email Walt Feasel
  2 siblings, 0 replies; 5+ messages in thread
From: Walt Feasel @ 2016-11-19 16:50 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, kirk, samuel.thibault, gregkh, speakup, devel,
	linux-kernel, Walt Feasel

Make suggested checkpatch modification for
CHECK: Alignment should match open parenthesis

Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
---
v2 makes changes to correct for email format patch submission

 drivers/staging/speakup/varhandlers.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/speakup/varhandlers.c b/drivers/staging/speakup/varhandlers.c
index 5ab7245..cc98419 100644
--- a/drivers/staging/speakup/varhandlers.c
+++ b/drivers/staging/speakup/varhandlers.c
@@ -237,8 +237,7 @@ int spk_set_num_var(int input, struct st_var_header *var, int how)
 	if (!var_data->u.n.out_str)
 		l = sprintf(cp, var_data->u.n.synth_fmt, (int)val);
 	else
-		l = sprintf(cp,
-			var_data->u.n.synth_fmt, var_data->u.n.out_str[val]);
+		l = sprintf(cp,	var_data->u.n.synth_fmt, var_data->u.n.out_str[val]);
 	synth_printf("%s", cp);
 	return 0;
 }
-- 
2.1.4

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

* [PATCH v2 3/3] staging: speakup: TODO Correct email
  2016-11-19 16:50 [PATCH v2 0/3] staging: speakup: checkpatch modifications Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 1/3] staging: speakup: varhandlers.c Comment style modifications Walt Feasel
  2016-11-19 16:50 ` [PATCH v2 2/3] staging: speakup: varhandlers.c Align parenthesis Walt Feasel
@ 2016-11-19 16:50 ` Walt Feasel
  2016-11-19 23:19   ` Chris Brannon
  2 siblings, 1 reply; 5+ messages in thread
From: Walt Feasel @ 2016-11-19 16:50 UTC (permalink / raw)
  To: w.d.hubbs
  Cc: chris, kirk, samuel.thibault, gregkh, speakup, devel,
	linux-kernel, Walt Feasel

Make email correction for kirk@reisers.ca

Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
---
v2 makes changes to correct for email format patch submission

 drivers/staging/speakup/TODO | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/speakup/TODO b/drivers/staging/speakup/TODO
index 3094799..993410c 100644
--- a/drivers/staging/speakup/TODO
+++ b/drivers/staging/speakup/TODO
@@ -42,6 +42,6 @@ We prefer that you contact us on the mailing list; however, if you do
 not want to subscribe to a mailing list, send your email to all of the
 following:
 
-w.d.hubbs@gmail.com, chris@the-brannons.com, kirk@braille.uwo.ca and
+w.d.hubbs@gmail.com, chris@the-brannons.com, kirk@reisers.ca and
 samuel.thibault@ens-lyon.org.
 
-- 
2.1.4

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

* Re: [PATCH v2 3/3] staging: speakup: TODO Correct email
  2016-11-19 16:50 ` [PATCH v2 3/3] staging: speakup: TODO Correct email Walt Feasel
@ 2016-11-19 23:19   ` Chris Brannon
  0 siblings, 0 replies; 5+ messages in thread
From: Chris Brannon @ 2016-11-19 23:19 UTC (permalink / raw)
  To: Walt Feasel
  Cc: w.d.hubbs, kirk, samuel.thibault, gregkh, speakup, devel, linux-kernel

Walt Feasel <waltfeasel@gmail.com> writes:

> Make email correction for kirk@reisers.ca
>
> Signed-off-by: Walt Feasel <waltfeasel@gmail.com>

Acked-by: Chris Brannon <chris@the-brannons.com>

> ---
> v2 makes changes to correct for email format patch submission
>
>  drivers/staging/speakup/TODO | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/speakup/TODO b/drivers/staging/speakup/TODO
> index 3094799..993410c 100644
> --- a/drivers/staging/speakup/TODO
> +++ b/drivers/staging/speakup/TODO
> @@ -42,6 +42,6 @@ We prefer that you contact us on the mailing list; however, if you do
>  not want to subscribe to a mailing list, send your email to all of the
>  following:
>  
> -w.d.hubbs@gmail.com, chris@the-brannons.com, kirk@braille.uwo.ca and
> +w.d.hubbs@gmail.com, chris@the-brannons.com, kirk@reisers.ca and
>  samuel.thibault@ens-lyon.org.

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

end of thread, other threads:[~2016-11-19 23:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-19 16:50 [PATCH v2 0/3] staging: speakup: checkpatch modifications Walt Feasel
2016-11-19 16:50 ` [PATCH v2 1/3] staging: speakup: varhandlers.c Comment style modifications Walt Feasel
2016-11-19 16:50 ` [PATCH v2 2/3] staging: speakup: varhandlers.c Align parenthesis Walt Feasel
2016-11-19 16:50 ` [PATCH v2 3/3] staging: speakup: TODO Correct email Walt Feasel
2016-11-19 23:19   ` Chris Brannon

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.