[PATCH xf86-input-synaptics] Fix product ID cutoff for MODEL_APPLETOUCH/MODEL_UNIBODY_MACBOOK

Clinton Sprain clintonsprain at gmail.com
Sat Apr 19 20:23:00 PDT 2014


A handful of Macbooks are being tagged as MODEL_UNIBODY_MACBOOKs when they should not be. This causes the default sensitivity to be very low for them, making the touchpad very difficult to use. This change moves the product ID cutoff so those devices fall into the old bucket again.

Signed-off-by: Clinton Sprain <clintonsprain at gmail.com>
---
 src/eventcomm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/eventcomm.c b/src/eventcomm.c
index 858efeb..405eeb9 100644
--- a/src/eventcomm.c
+++ b/src/eventcomm.c
@@ -305,8 +305,8 @@ struct model_lookup_t {
 static struct model_lookup_t model_lookup_table[] = {
     {0x0002, 0x0007, 0x0007, MODEL_SYNAPTICS},
     {0x0002, 0x0008, 0x0008, MODEL_ALPS},
-    {0x05ac, PRODUCT_ANY, 0x222, MODEL_APPLETOUCH},
-    {0x05ac, 0x223, PRODUCT_ANY, MODEL_UNIBODY_MACBOOK},
+    {0x05ac, PRODUCT_ANY, 0x22f, MODEL_APPLETOUCH},
+    {0x05ac, 0x230, PRODUCT_ANY, MODEL_UNIBODY_MACBOOK},
     {0x0002, 0x000e, 0x000e, MODEL_ELANTECH},
     {0x0, 0x0, 0x0, 0x0}
 };
-- 
1.9.1


More information about the xorg-devel mailing list