diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2006-08-04 22:53:15 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2006-08-04 22:53:15 -0400 |
commit | c605b679144a39f291debd7031a4ada0337f02ef (patch) | |
tree | 04f38911f2f17ed50ae760e71e90ad324bd2af93 /drivers/usb/input | |
parent | c669869710abd1ba47f25569ccc478c42f62a888 (diff) |
Input: ati_remote - relax permissions sysfs module parameters
Allow changing debug and channel_mask parameters on the fly.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/usb/input')
-rw-r--r-- | drivers/usb/input/ati_remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/input/ati_remote.c b/drivers/usb/input/ati_remote.c index b00232cdd392..bdf144bf7f1b 100644 --- a/drivers/usb/input/ati_remote.c +++ b/drivers/usb/input/ati_remote.c | |||
@@ -122,11 +122,11 @@ | |||
122 | #define FILTER_TIME 60 /* msec */ | 122 | #define FILTER_TIME 60 /* msec */ |
123 | 123 | ||
124 | static unsigned long channel_mask; | 124 | static unsigned long channel_mask; |
125 | module_param(channel_mask, ulong, 0444); | 125 | module_param(channel_mask, ulong, 0644); |
126 | MODULE_PARM_DESC(channel_mask, "Bitmask of remote control channels to ignore"); | 126 | MODULE_PARM_DESC(channel_mask, "Bitmask of remote control channels to ignore"); |
127 | 127 | ||
128 | static int debug; | 128 | static int debug; |
129 | module_param(debug, int, 0444); | 129 | module_param(debug, int, 0644); |
130 | MODULE_PARM_DESC(debug, "Enable extra debug messages and information"); | 130 | MODULE_PARM_DESC(debug, "Enable extra debug messages and information"); |
131 | 131 | ||
132 | static int repeat_filter = FILTER_TIME; | 132 | static int repeat_filter = FILTER_TIME; |