This patch fixes the key repeat issue with the Fn+F? keys on the Samsung P560 and P210 Notebook, so that the keys can used correctly, otherwise the keys repeat indefinitely. Signed-off-by: Jan-Michael Brummer <jan.brummer@xxxxxxxxx> --- linux-source-2.6.31/drivers/input/keyboard/atkbd.c.orig 2009-09-16 02:23:02.000000000 +0200 +++ linux-source-2.6.31/drivers/input/keyboard/atkbd.c 2009-09-22 18:04:47.720622934 +0200 @@ -1607,6 +1607,24 @@ static struct dmi_system_id atkbd_dmi_qu .driver_data = atkbd_samsung_forced_release_keys, }, { + .ident = "Samsung P560", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), + DMI_MATCH(DMI_PRODUCT_NAME, "P560"), + }, + .callback = atkbd_setup_forced_release, + .driver_data = atkbd_samsung_forced_release_keys, + }, + { + .ident = "Samsung P210", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), + DMI_MATCH(DMI_PRODUCT_NAME, "P210"), + }, + .callback = atkbd_setup_forced_release, + .driver_data = atkbd_samsung_forced_release_keys, + }, + { .ident = "Samsung SQ45S70S", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html