module_param: make bool parameters really bool (drivers & misc)
[deliverable/linux.git] / drivers / input / mouse / synaptics_i2c.c
index 4b755cb5b38cfc183a02c894e623352e486750b2..1c58aafa523fd8ed699bd274378f1e8b2c21dd21 100644 (file)
 #define NO_DATA_SLEEP_MSECS    (MSEC_PER_SEC / 4)
 
 /* Control touchpad's No Deceleration option */
-static int no_decel = 1;
+static bool no_decel = 1;
 module_param(no_decel, bool, 0644);
 MODULE_PARM_DESC(no_decel, "No Deceleration. Default = 1 (on)");
 
 /* Control touchpad's Reduced Reporting option */
-static int reduce_report;
+static bool reduce_report;
 module_param(reduce_report, bool, 0644);
 MODULE_PARM_DESC(reduce_report, "Reduced Reporting. Default = 0 (off)");
 
 /* Control touchpad's No Filter option */
-static int no_filter;
+static bool no_filter;
 module_param(no_filter, bool, 0644);
 MODULE_PARM_DESC(no_filter, "No Filter. Default = 0 (off)");
 
This page took 0.023633 seconds and 5 git commands to generate.