]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Input: psmouse - use true instead of 1 for boolean values
authorShailendra Verma <shailendra.capricorn@gmail.com>
Tue, 26 May 2015 21:07:12 +0000 (14:07 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Tue, 26 May 2015 21:16:10 +0000 (14:16 -0700)
The variable psmouse_smartscroll is bool type so assigning true
instead of 1.

Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/mouse/psmouse-base.c

index 5bb1658f60c746f29efd4f5d7008068701f4d08d..7c4ba43d253e7661088c8e241fca6ab02e1f68d3 100644 (file)
@@ -63,7 +63,7 @@ static unsigned int psmouse_rate = 100;
 module_param_named(rate, psmouse_rate, uint, 0644);
 MODULE_PARM_DESC(rate, "Report rate, in reports per second.");
 
-static bool psmouse_smartscroll = 1;
+static bool psmouse_smartscroll = true;
 module_param_named(smartscroll, psmouse_smartscroll, bool, 0644);
 MODULE_PARM_DESC(smartscroll, "Logitech Smartscroll autorepeat, 1 = enabled (default), 0 = disabled.");