On Fri, Feb 15, 2013 at 11:36 AM, Henrik Rydberg <[email protected]> wrote: > The pointer emulation events are derived from contact values that > have already been filtered, so send the emulated events as is. > > Reported-by: Daniel Kurtz <[email protected]> > Signed-off-by: Henrik Rydberg <[email protected]>
Hi Henrik, Brilliant! Glad there is now such an easy fix for this. Reviewed-by: Daniel Kurtz <[email protected]> > --- > drivers/input/input-mt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/input/input-mt.c b/drivers/input/input-mt.c > index 1abbc17..1b7f4d4 100644 > --- a/drivers/input/input-mt.c > +++ b/drivers/input/input-mt.c > @@ -18,6 +18,7 @@ static void copy_abs(struct input_dev *dev, unsigned int > dst, unsigned int src) > { > if (dev->absinfo && test_bit(src, dev->absbit)) { > dev->absinfo[dst] = dev->absinfo[src]; > + dev->absinfo[dst].fuzz = 0; > dev->absbit[BIT_WORD(dst)] |= BIT_MASK(dst); > } > } > -- > 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

