aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/main.c
diff options
context:
space:
mode:
authorDerek Robson <robsonde@gmail.com>2017-01-28 19:35:01 +1300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-01-31 09:30:58 +0100
commit73c3700e86ab1d82b62b43ec24d12777e06935af (patch)
tree0bf0945b394e185e00e905e9eede66a004de6a2e /drivers/staging/speakup/main.c
parentstaging: lustre: lnet: Fix coding style errors (diff)
downloadlinux-dev-73c3700e86ab1d82b62b43ec24d12777e06935af.tar.xz
linux-dev-73c3700e86ab1d82b62b43ec24d12777e06935af.zip
Staging: speakup - syle fix permissions to octal
A style fix across whole driver. changed permissions to octal style, found using checkpatch Signed-off-by: Derek Robson <robsonde@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup/main.c')
-rw-r--r--drivers/staging/speakup/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/speakup/main.c b/drivers/staging/speakup/main.c
index 5c192042eeac..bccccf539d38 100644
--- a/drivers/staging/speakup/main.c
+++ b/drivers/staging/speakup/main.c
@@ -58,8 +58,8 @@ MODULE_LICENSE("GPL");
MODULE_VERSION(SPEAKUP_VERSION);
char *synth_name;
-module_param_named(synth, synth_name, charp, S_IRUGO);
-module_param_named(quiet, spk_quiet_boot, bool, S_IRUGO);
+module_param_named(synth, synth_name, charp, 0444);
+module_param_named(quiet, spk_quiet_boot, bool, 0444);
MODULE_PARM_DESC(synth, "Synth to start if speakup is built in.");
MODULE_PARM_DESC(quiet, "Do not announce when the synthesizer is found.");