@@ -257,13 +257,13 @@ MODULE_LICENSE("GPL");
* Make the threshold a module parameter
*/
static int threshold = ATP_THRESHOLD;
-module_param(threshold, int, 0644);
+module_param(threshold, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(threshold, "Discard any change in data from a sensor"
" (the trackpad has many of these sensors)"
" less than this value.");
static int debug;
-module_param(debug, int, 0644);
+module_param(debug, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(debug, "Activate debugging output");
/*