linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: Linux-2.6.0-test6: synaptics upside down?
@ 2003-09-29  5:50 Panos Christeas
  0 siblings, 0 replies; 5+ messages in thread
From: Panos Christeas @ 2003-09-29  5:50 UTC (permalink / raw)
  To: peter; +Cc: lkml

>Hi folks,
>   On the latest 2.6.0-test6 kernel, the synaptics
>touchpad on my
>Clevo is upside down -- moving my finger up moves the
>pointer down, et vice versa.

>This patch fixed the problem for me, but is probably
not >the right fix.

Have a a look at the 'configuration bits' that the
touchpad reports to the driver. These indicate the
type and *position* of the touchpad. You can safely
deduct from those if the transformation applies or
not.

btw. Has anybody come accross a 90deg mounted pad?


__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Linux-2.6.0-test6: synaptics upside down?
  2003-09-29  5:32 ` Peter Osterlund
@ 2003-09-30  2:25   ` Peter Chubb
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Chubb @ 2003-09-30  2:25 UTC (permalink / raw)
  To: Peter Osterlund; +Cc: linux-kernel

>>>>> "Peter" == Peter Osterlund <petero2@telia.com> writes:

Peter> On Mon, 29 Sep 2003, Peter Chubb wrote:
>> Hi folks, On the latest 2.6.0-test6 kernel, the synaptics touchpad
>> on my Clevo is upside down -- moving my finger up moves the pointer
>> down, et vice versa.

Peter> Try upgrading to version 0.11.7 of the XFree86 driver.

Thanks, that fixed it.

Peter C

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Linux-2.6.0-test6: synaptics upside down?
@ 2003-09-29  5:38 Mathieu LESNIAK
  0 siblings, 0 replies; 5+ messages in thread
From: Mathieu LESNIAK @ 2003-09-29  5:38 UTC (permalink / raw)
  To: linux-kernel

Peter Chubb wrote:
> Hi folks,
>    On the latest 2.6.0-test6 kernel, the synaptics touchpad on my
> Clevo is upside down -- moving my finger up moves the pointer down,
> et vice versa.
> 
> This patch fixed the problem for me, but is probably not the right
> fix.
> 

Hi !

I've got similar problem on my presario 2118, and downloading the
lastest driver from
http://w1.894.telia.com/~u89404340/touchpad/index.html solved it.

Mathieu LESNIAK



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Linux-2.6.0-test6: synaptics upside down?
  2003-09-29  5:28 Peter Chubb
@ 2003-09-29  5:32 ` Peter Osterlund
  2003-09-30  2:25   ` Peter Chubb
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Osterlund @ 2003-09-29  5:32 UTC (permalink / raw)
  To: Peter Chubb; +Cc: linux-kernel

On Mon, 29 Sep 2003, Peter Chubb wrote:

> Hi folks,
>    On the latest 2.6.0-test6 kernel, the synaptics touchpad on my
> Clevo is upside down -- moving my finger up moves the pointer down,
> et vice versa.

Try upgrading to version 0.11.7 of the XFree86 driver.

-- 
Peter Osterlund - petero2@telia.com
http://w1.894.telia.com/~u89404340


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Linux-2.6.0-test6: synaptics upside down?
@ 2003-09-29  5:28 Peter Chubb
  2003-09-29  5:32 ` Peter Osterlund
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Chubb @ 2003-09-29  5:28 UTC (permalink / raw)
  To: petero2, linux-kernel


Hi folks,
   On the latest 2.6.0-test6 kernel, the synaptics touchpad on my
Clevo is upside down -- moving my finger up moves the pointer down,
et vice versa.

This patch fixed the problem for me, but is probably not the right
fix.

===== drivers/input/mouse/synaptics.c 1.9 vs edited =====
--- 1.9/drivers/input/mouse/synaptics.c	Fri Sep 26 16:58:04 2003
+++ edited/drivers/input/mouse/synaptics.c	Mon Sep 29 15:18:53 2003
@@ -529,7 +529,11 @@
 	/* Post events */
 	if (hw.z > 0) {
 		input_report_abs(dev, ABS_X, hw.x);
+#if 0
 		input_report_abs(dev, ABS_Y, YMAX_NOMINAL + YMIN_NOMINAL - hw.y);
+#else
+		input_report_abs(dev, ABS_Y, hw.y);
+#endif
 	}
 	input_report_abs(dev, ABS_PRESSURE, hw.z);
 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-09-30  2:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-29  5:50 Linux-2.6.0-test6: synaptics upside down? Panos Christeas
  -- strict thread matches above, loose matches on Subject: below --
2003-09-29  5:38 Mathieu LESNIAK
2003-09-29  5:28 Peter Chubb
2003-09-29  5:32 ` Peter Osterlund
2003-09-30  2:25   ` Peter Chubb

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).