aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/libps2.h
diff options
context:
space:
mode:
authorKamal Mostafa <kamal@canonical.com>2012-11-20 23:04:35 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2013-01-06 01:11:25 -0800
commit80524f083e2c3e70057f5bb476db92baa14cb22b (patch)
tree2a658ca9cc1745406cc363e45f782c70f15b6613 /include/linux/libps2.h
parentInput: wacom - use new input-mt routines (diff)
downloadlinux-dev-80524f083e2c3e70057f5bb476db92baa14cb22b.tar.xz
linux-dev-80524f083e2c3e70057f5bb476db92baa14cb22b.zip
Input: increase struct ps2dev cmdbuf[] to 8 bytes
Cypress PS/2 Trackpad (drivers/input/mouse/cypress_ps2.c) needs this larger cmdbuf[] to handle 8-byte packet responses. Signed-off-by: Kamal Mostafa <kamal@canonical.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'include/linux/libps2.h')
-rw-r--r--include/linux/libps2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/libps2.h b/include/linux/libps2.h
index 79603a6c356f..4ad06e824f76 100644
--- a/include/linux/libps2.h
+++ b/include/linux/libps2.h
@@ -36,7 +36,7 @@ struct ps2dev {
wait_queue_head_t wait;
unsigned long flags;
- unsigned char cmdbuf[6];
+ unsigned char cmdbuf[8];
unsigned char cmdcnt;
unsigned char nak;
};