Re: Problem with appletouch driver in Linux version 2.6.23-rc7
From: Soeren Sonnenburg <hidden>
Date: 2007-09-26 19:56:36
From: Soeren Sonnenburg <hidden>
Date: 2007-09-26 19:56:36
On Mon, 2007-09-24 at 15:22 +0200, Thomas Rohwer wrote:
Hello,quoted
could you please re-send the patch? I for some reason have yet to see it ...here it is again, adressing also the comments from Dmitry.
Thomas, Matthew and Dmitry,
I think there is another bug in this. I mean whenever a mouse button is
pressed or the mouse is moved the counter should be reset - no?
Currently the idle counter is just increased...
I mean shouldn't it be
if (x || y || key)
dev->idlecount=0;
if (!x && !y && !key)
{
dev->idlecount++;
if (dev->idlecount == 10) {
dev->valid = 0;
schedule_work(&dev->work);
}
}
Soeren