[PATCH 3/39] input: Fix emulation of mouse reset (0xff) command.

From: Vojtech Pavlik
Date: Mon Jun 07 2004 - 08:14:38 EST


You can pull this changeset from:
bk://kernel.bkbits.net/vojtech/input-for-linus

===================================================================

ChangeSet@xxxxxxxxxxxx, 2004-04-05 17:39:48+02:00, vojtech@xxxxxxx
input: Fix emulation of mouse reset (0xff) command.


mousedev.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

===================================================================

diff -Nru a/drivers/input/mousedev.c b/drivers/input/mousedev.c
--- a/drivers/input/mousedev.c 2004-06-07 13:13:38 +02:00
+++ b/drivers/input/mousedev.c 2004-06-07 13:13:38 +02:00
@@ -391,9 +391,9 @@
list->impsseq = 0;
list->imexseq = 0;
list->mode = 0;
- list->ps2[0] = 0xaa;
- list->ps2[1] = 0x00;
- list->bufsiz = 2;
+ list->ps2[1] = 0xaa;
+ list->ps2[2] = 0x00;
+ list->bufsiz = 3;
break;
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/