public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: speakup: Replace symbolic permissions with octal permissions
@ 2017-10-13 21:33 Shreeya Patel
  2017-10-13 21:44 ` [Outreachy kernel] " Julia Lawall
  0 siblings, 1 reply; 3+ messages in thread
From: Shreeya Patel @ 2017-10-13 21:33 UTC (permalink / raw)
  To: gregkh, w.d.hubbs, chris, kirk, samuel.thibault, speakup, devel,
	linux-kernel, outreachy-kernel
  Cc: Shreeya Patel

Resolve following checkpatch issue:
WARNING: Symbolic permissions 'S_IRUGO' are not preferred.
Consider using octal permissions '0444'.

Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
---
 drivers/staging/speakup/speakup_bns.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/speakup/speakup_bns.c b/drivers/staging/speakup/speakup_bns.c
index 60bcf0d..402b0fb 100644
--- a/drivers/staging/speakup/speakup_bns.c
+++ b/drivers/staging/speakup/speakup_bns.c
@@ -120,7 +120,7 @@ static struct spk_synth synth_bns = {
 };
 
 module_param_named(ser, synth_bns.ser, int, 0444);
-module_param_named(dev, synth_bns.dev_name, charp, S_IRUGO);
+module_param_named(dev, synth_bns.dev_name, charp, 0444);
 module_param_named(start, synth_bns.startup, short, 0444);
 
 MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
-- 
2.7.4

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

* Re: [Outreachy kernel] [PATCH] Staging: speakup: Replace symbolic permissions with octal permissions
  2017-10-13 21:33 [PATCH] Staging: speakup: Replace symbolic permissions with octal permissions Shreeya Patel
@ 2017-10-13 21:44 ` Julia Lawall
  2017-10-13 21:46   ` Shreeya Patel
  0 siblings, 1 reply; 3+ messages in thread
From: Julia Lawall @ 2017-10-13 21:44 UTC (permalink / raw)
  To: Shreeya Patel
  Cc: gregkh, w.d.hubbs, chris, kirk, samuel.thibault, speakup, devel,
	linux-kernel, outreachy-kernel



On Sat, 14 Oct 2017, Shreeya Patel wrote:

> Resolve following checkpatch issue:
> WARNING: Symbolic permissions 'S_IRUGO' are not preferred.
> Consider using octal permissions '0444'.
>
> Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
> ---
>  drivers/staging/speakup/speakup_bns.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/speakup/speakup_bns.c b/drivers/staging/speakup/speakup_bns.c
> index 60bcf0d..402b0fb 100644
> --- a/drivers/staging/speakup/speakup_bns.c
> +++ b/drivers/staging/speakup/speakup_bns.c
> @@ -120,7 +120,7 @@ static struct spk_synth synth_bns = {
>  };
>
>  module_param_named(ser, synth_bns.ser, int, 0444);
> -module_param_named(dev, synth_bns.dev_name, charp, S_IRUGO);
> +module_param_named(dev, synth_bns.dev_name, charp, 0444);

This change is already made.  You need to update your staging tree.

julia

>  module_param_named(start, synth_bns.startup, short, 0444);
>
>  MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-based).");
> --
> 2.7.4
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/1507930425-5471-1-git-send-email-shreeya.patel23498%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

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

* Re: [Outreachy kernel] [PATCH] Staging: speakup: Replace symbolic permissions with octal permissions
  2017-10-13 21:44 ` [Outreachy kernel] " Julia Lawall
@ 2017-10-13 21:46   ` Shreeya Patel
  0 siblings, 0 replies; 3+ messages in thread
From: Shreeya Patel @ 2017-10-13 21:46 UTC (permalink / raw)
  To: Julia Lawall
  Cc: gregkh, w.d.hubbs, chris, kirk, samuel.thibault, speakup, devel,
	linux-kernel, outreachy-kernel

On Fri, 2017-10-13 at 23:44 +0200, Julia Lawall wrote:
> 
> On Sat, 14 Oct 2017, Shreeya Patel wrote:
> 
> > 
> > Resolve following checkpatch issue:
> > WARNING: Symbolic permissions 'S_IRUGO' are not preferred.
> > Consider using octal permissions '0444'.
> > 
> > Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
> > ---
> >  drivers/staging/speakup/speakup_bns.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/staging/speakup/speakup_bns.c
> > b/drivers/staging/speakup/speakup_bns.c
> > index 60bcf0d..402b0fb 100644
> > --- a/drivers/staging/speakup/speakup_bns.c
> > +++ b/drivers/staging/speakup/speakup_bns.c
> > @@ -120,7 +120,7 @@ static struct spk_synth synth_bns = {
> >  };
> > 
> >  module_param_named(ser, synth_bns.ser, int, 0444);
> > -module_param_named(dev, synth_bns.dev_name, charp, S_IRUGO);
> > +module_param_named(dev, synth_bns.dev_name, charp, 0444);
> This change is already made.  You need to update your staging tree.
> 
> julia

Oh, ok i'll do it.


> 
> > 
> >  module_param_named(start, synth_bns.startup, short, 0444);
> > 
> >  MODULE_PARM_DESC(ser, "Set the serial port for the synthesizer (0-
> > based).");
> > --
> > 2.7.4
> > 
> > --
> > You received this message because you are subscribed to the Google
> > Groups "outreachy-kernel" group.
> > To unsubscribe from this group and stop receiving emails from it,
> > send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> > To post to this group, send email to outreachy-kernel@googlegroups.
> > com.
> > To view this discussion on the web visit https://groups.google.com/
> > d/msgid/outreachy-kernel/1507930425-5471-1-git-send-email-
> > shreeya.patel23498%40gmail.com.
> > For more options, visit https://groups.google.com/d/optout.
> > 

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

end of thread, other threads:[~2017-10-13 21:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-13 21:33 [PATCH] Staging: speakup: Replace symbolic permissions with octal permissions Shreeya Patel
2017-10-13 21:44 ` [Outreachy kernel] " Julia Lawall
2017-10-13 21:46   ` Shreeya Patel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox