Displaying 1 result from an estimated 1 matches for "mouse_resolution".
2005 Oct 20
0
[PATCH][VT] disable bogus touchpad device model, which cause annoying dmesg on 2.6 kernel
...)
{
/* time for the special stuff */
@@ -681,6 +695,7 @@
}
}
else
+#endif
{
/* not a special command, just do the regular stuff */
kbd_queue(s, AUX_ACK, 1);
@@ -705,14 +720,18 @@
s->mouse_sample_rate = 100;
s->mouse_resolution = 2;
s->mouse_status = 0;
+#ifdef SYNAPTIC
s->touchpad.absolute = 0;
+#endif
kbd_queue(s, AUX_ACK, 1);
break;
case AUX_RESET:
s->mouse_sample_rate = 100;
s->mouse_resolution = 2;
s->mo...