Commit fb6bef4c authored by Linus Torvalds's avatar Linus Torvalds

Make psmouse driver _much_ more lenient about packet data timeouts

parent 775ded56
......@@ -192,7 +192,7 @@ static void psmouse_interrupt(struct serio *serio, unsigned char data, unsigned
return;
}
if (psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/20)) {
if (psmouse->pktcnt && time_after(jiffies, psmouse->last + HZ/2)) {
printk(KERN_WARNING "psmouse.c: Lost synchronization, throwing %d bytes away.\n", psmouse->pktcnt);
psmouse->pktcnt = 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment