projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7debcbb
)
Input: psmouse - use true instead of 1 for boolean values
author
Shailendra Verma
<
[email protected]
>
Tue, 26 May 2015 21:07:12 +0000
(14:07 -0700)
committer
Dmitry Torokhov
<
[email protected]
>
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 <
[email protected]
>
Signed-off-by: Dmitry Torokhov <
[email protected]
>
drivers/input/mouse/psmouse-base.c
patch
|
blob
|
history
diff --git
a/drivers/input/mouse/psmouse-base.c
b/drivers/input/mouse/psmouse-base.c
index 5bb1658f60c746f29efd4f5d7008068701f4d08d..7c4ba43d253e7661088c8e241fca6ab02e1f68d3 100644
(file)
--- a/
drivers/input/mouse/psmouse-base.c
+++ b/
drivers/input/mouse/psmouse-base.c
@@
-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.");