The patch titled drivers/usb/input/ati_remote.c: autorepeat fix has been added to the -mm tree. Its filename is drivers-usb-input-ati_remotec-autorepeat-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: drivers/usb/input/ati_remote.c: autorepeat fix From: Marko Macek <Marko.Macek@xxxxxxx> When HZ is set to 250 (new default) or 100, the time span during which repeated events from the device are ignored could be too small due to ms->jiffies rounding. This causes the auto repeat to kick in early making it impossible for the user to generate individual press/release events. Increate the timeout to compensate. Signed-off-by: Marko Macek <Marko.Macek@xxxxxxx> Cc: Dmitry Torokhov <dtor_core@xxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Vojtech Pavlik <vojtech@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/input/ati_remote.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff -puN drivers/usb/input/ati_remote.c~drivers-usb-input-ati_remotec-autorepeat-fix drivers/usb/input/ati_remote.c --- a/drivers/usb/input/ati_remote.c~drivers-usb-input-ati_remotec-autorepeat-fix +++ a/drivers/usb/input/ati_remote.c @@ -152,9 +152,8 @@ static const char accel[] = { 1, 2, 4, 6 * events. The hardware generates 5 events for the first keypress * and we have to take this into account for an accurate repeat * behaviour. - * (HZ / 20) == 50 ms and works well for me. */ -#define FILTER_TIME (HZ / 20) +#define FILTER_TIME 60 /* msec */ struct ati_remote { struct input_dev *idev; @@ -467,7 +466,7 @@ static void ati_remote_input_report(stru /* Filter duplicate events which happen "too close" together. */ if ((ati_remote->old_data[0] == data[1]) && (ati_remote->old_data[1] == data[2]) && - time_before(jiffies, ati_remote->old_jiffies + FILTER_TIME)) { + time_before(jiffies, ati_remote->old_jiffies + msecs_to_jiffies(FILTER_TIME))) { ati_remote->repeat_count++; } else { ati_remote->repeat_count = 0; _ Patches currently in -mm which might be from Marko.Macek@xxxxxxx are drivers-usb-input-ati_remotec-autorepeat-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html