mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] [STYLE] staging:braille ERROR: Use 4 digit octal
@ 2016-11-10  1:16 Walt
  0 siblings, 0 replies; only message in thread
From: Walt @ 2016-11-10  1:16 UTC (permalink / raw)
  To: linux-kernel; +Cc: Walt

Fixed one 48: ERROR: Use 4 digit octal (0777) not decimal permissions
per checkpatch.

Signed-off-by: Walt <waltfeasel@gmail.com>
---
 drivers/accessibility/braille/braille_console.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/accessibility/braille/braille_console.c b/drivers/accessibility/braille/braille_console.c
index dc34a5b..7ac3d5f 100644
--- a/drivers/accessibility/braille/braille_console.c
+++ b/drivers/accessibility/braille/braille_console.c
@@ -45,7 +45,7 @@ MODULE_LICENSE("GPL");
 
 /* Emit various sounds */
 static bool sound;
-module_param(sound, bool, 0);
+module_param(sound, bool, 0000);
 MODULE_PARM_DESC(sound, "emit sounds");
 
 static void beep(unsigned int freq)
-- 
2.1.4

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-11-10  1:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-10  1:16 [PATCH] [STYLE] staging:braille ERROR: Use 4 digit octal Walt

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

Powered by JetHome