mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
[PATCH] input: disable scroll feature on AT keyboards
This patch disables the scroll feature on AT keyboards by default, because it causes the numbers of mouse devices to shift, breaking user setups. Signed-off-by: Vojtech Pavlik <vojtech@suse.cz> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
ad95d6098d
commit
a86d1f4301
@ -54,7 +54,7 @@ static int atkbd_softraw = 1;
|
|||||||
module_param_named(softraw, atkbd_softraw, bool, 0);
|
module_param_named(softraw, atkbd_softraw, bool, 0);
|
||||||
MODULE_PARM_DESC(softraw, "Use software generated rawmode");
|
MODULE_PARM_DESC(softraw, "Use software generated rawmode");
|
||||||
|
|
||||||
static int atkbd_scroll = 1;
|
static int atkbd_scroll = 0;
|
||||||
module_param_named(scroll, atkbd_scroll, bool, 0);
|
module_param_named(scroll, atkbd_scroll, bool, 0);
|
||||||
MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards");
|
MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user