From fb1502680c96a14a452ec3c22c37445c13a86199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 1 Nov 2008 20:33:14 +0000 Subject: [PATCH] Turn off synaptics touchpad support for the time being. I am also not happy with the acceleration yet and as reported by others, there are problems with real mice as well (now wheel support anymore). With the plain PS/2 driver, I can slide my finger slowly over the touchpad and the cursor would react/follow precisely the movement. In Synaptics mode however, there are unexpected pauses in the movement of the cursor. In any case, the patch is finally in and I or anyone else can continue to work on it. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28443 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/bus_managers/ps2/ps2_dev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/add-ons/kernel/bus_managers/ps2/ps2_dev.c b/src/add-ons/kernel/bus_managers/ps2/ps2_dev.c index 11639dfe58..85d137dd8b 100644 --- a/src/add-ons/kernel/bus_managers/ps2/ps2_dev.c +++ b/src/add-ons/kernel/bus_managers/ps2/ps2_dev.c @@ -102,6 +102,7 @@ ps2_dev_detect_pointing(ps2_dev *dev, device_hooks **hooks) // probe devices // the probe function has to set the dev name and the dev packet size +#if 0 status = probe_trackpoint(dev); if (status == B_OK) { *hooks = &gStandardMouseDeviceHooks; @@ -113,6 +114,7 @@ ps2_dev_detect_pointing(ps2_dev *dev, device_hooks **hooks) *hooks = &gSynapticsDeviceHooks; goto dev_found; } +#endif status = probe_standard_mouse(dev); if (status == B_OK) {