Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit feb9eba8 authored by Shailendra Verma's avatar Shailendra Verma Committed by Dmitry Torokhov
Browse files

Input: psmouse - use true instead of 1 for boolean values



The variable psmouse_smartscroll is bool type so assigning true
instead of 1.

Signed-off-by: default avatarShailendra Verma <shailendra.capricorn@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 7debcbb1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.");