2004-11-25 06:35:25

by Dmitry Torokhov

[permalink] [raw]
Subject: [PATCH] i8042: fix "debug" parameter sysfs permissions.

The permission bits for the new debug parameter were set incorrectly,
please pull.

--
Dmitry


===================================================================


[email protected], 2004-11-25 00:33:20-05:00, [email protected]
Input: i8042 - fix "debug" parameter sysfs permissions.

Signed-off-by: Dmitry Torokhov <[email protected]>


i8042.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)


===================================================================



diff -Nru a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
--- a/drivers/input/serio/i8042.c 2004-11-25 01:27:15 -05:00
+++ b/drivers/input/serio/i8042.c 2004-11-25 01:27:15 -05:00
@@ -68,7 +68,7 @@
#define DEBUG
#ifdef DEBUG
static int i8042_debug;
-module_param_named(debug, i8042_debug, bool, 600);
+module_param_named(debug, i8042_debug, bool, 0600);
MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
#endif