From: Dmitry Torokhov Date: Sat, 5 Aug 2006 02:53:15 +0000 (-0400) Subject: Input: ati_remote - relax permissions sysfs module parameters X-Git-Tag: v3.12-rc1~34253^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c605b679144a39f291debd7031a4ada0337f02ef;p=kernel%2Fkernel-generic.git Input: ati_remote - relax permissions sysfs module parameters Allow changing debug and channel_mask parameters on the fly. Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/usb/input/ati_remote.c b/drivers/usb/input/ati_remote.c index b00232c..bdf144b 100644 --- a/drivers/usb/input/ati_remote.c +++ b/drivers/usb/input/ati_remote.c @@ -122,11 +122,11 @@ #define FILTER_TIME 60 /* msec */ static unsigned long channel_mask; -module_param(channel_mask, ulong, 0444); +module_param(channel_mask, ulong, 0644); MODULE_PARM_DESC(channel_mask, "Bitmask of remote control channels to ignore"); static int debug; -module_param(debug, int, 0444); +module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Enable extra debug messages and information"); static int repeat_filter = FILTER_TIME;