From patchwork Fri Sep 11 08:17:12 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Lothian X-Patchwork-Id: 46822 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8B8HZWA017802 for ; Fri, 11 Sep 2009 08:17:35 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751144AbZIKIRb (ORCPT ); Fri, 11 Sep 2009 04:17:31 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752586AbZIKIRb (ORCPT ); Fri, 11 Sep 2009 04:17:31 -0400 Received: from fg-out-1718.google.com ([72.14.220.157]:23990 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751144AbZIKIRa (ORCPT ); Fri, 11 Sep 2009 04:17:30 -0400 Received: by fg-out-1718.google.com with SMTP id 22so1843657fge.1 for ; Fri, 11 Sep 2009 01:17:32 -0700 (PDT) MIME-Version: 1.0 Received: by 10.239.139.204 with SMTP id u12mr260761hbu.81.1252657052415; Fri, 11 Sep 2009 01:17:32 -0700 (PDT) From: Mike Lothian Date: Fri, 11 Sep 2009 09:17:12 +0100 Message-ID: Subject: Samsung R510 To: linux-input@vger.kernel.org Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Hi Please could the following patch be added to the kernel .ident = "Fujitsu Amilo PA 1510", .matches = { This fixes the forced release keys for me Thanks Mike PS I'm not subscribed to this list so please CC me --- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 95fe045..592623e 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c @@ -1572,6 +1572,16 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { .callback = atkbd_setup_forced_release, .driver_data = atkbd_samsung_forced_release_keys, }, + { + .ident = "Samsung R510/P510", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), + DMI_MATCH(DMI_PRODUCT_NAME, "R510/P510"), + }, + .callback = atkbd_setup_forced_release, + .driver_data = atkbd_samsung_forced_release_keys, + }, + {