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
This commit is contained in:
Stephan Aßmus
2008-11-01 20:33:14 +00:00
parent dd85ce0d07
commit fb1502680c
@@ -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) {