Displaying 1 result from an estimated 1 matches for "aux_ack".
Did you mean:
aux_a
2005 Oct 20
0
[PATCH][VT] disable bogus touchpad device model, which cause annoying dmesg on 2.6 kernel
...\n", val);
#endif
@@ -536,7 +547,9 @@
return;
}
}
+#ifdef SYNAPTIC
last_com = val;
+#endif
switch(val) {
case AUX_SET_SCALE11:
s->mouse_status &= ~MOUSE_STATUS_SCALE21;
@@ -568,6 +581,7 @@
kbd_queue(s, AUX_ACK, 1);
break;
case AUX_GET_SCALE:
+#ifdef SYNAPTIC
if (res_count == 4)
{
/* time for the special stuff */
@@ -681,6 +695,7 @@
}
}
else
+#endif
{
/* not a special command, just do the regular stuff */
kbd_queue(s, AU...