hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/drivers/input/touchscreen/wacom_w8001.c
....@@ -27,6 +27,8 @@
2727 MODULE_DESCRIPTION(DRIVER_DESC);
2828 MODULE_LICENSE("GPL");
2929
30
+#define W8001_MAX_PHYS 42
31
+
3032 #define W8001_MAX_LENGTH 13
3133 #define W8001_LEAD_MASK 0x80
3234 #define W8001_LEAD_BYTE 0x80
....@@ -89,7 +91,7 @@
8991 unsigned char response_type;
9092 unsigned char response[W8001_MAX_LENGTH];
9193 unsigned char data[W8001_MAX_LENGTH];
92
- char phys[32];
94
+ char phys[W8001_MAX_PHYS];
9395 int type;
9496 unsigned int pktlen;
9597 u16 max_touch_x;