Displaying 1 result from an estimated 1 matches for "mouse_write_cmd".
2005 Oct 20
0
[PATCH][VT] disable bogus touchpad device model, which cause annoying dmesg on 2.6 kernel
...== 4 && val == 0x14)
{
/* time for the special stuff */
@@ -729,6 +749,7 @@
val = (rr*64) + (ss*16) + (tt*4) + uu;
/* TODO: set the mode byte */
} else
+#endif
s->mouse_sample_rate = val;
#if 0
/* detect IMPS/2 or IMEX */
@@ -762,6 +783,7 @@
s->mouse_write_cmd = -1;
break;
case AUX_SET_RES:
+#ifdef SYNAPTIC
if (last_com != AUX_SET_RES)
{
/* if its not 4 in a row, its not a command */
@@ -790,6 +812,7 @@
uu = val;
break;
}
+#endif
s->mouse_resolution = val;
kbd_queue(s, AUX_ACK, 1);
s->mouse_...