eaaf41d
From: Hans de Goede <hdegoede@redhat.com>
eaaf41d
Date: Fri, 24 Oct 2014 11:30:19 +0200
eaaf41d
Subject: [PATCH] i8042: Add notimeout quirk for Fujitsu Lifebook A544 and
eaaf41d
 Lifebook AH544
eaaf41d
eaaf41d
These models need i8042.notimeout, otherwise the touchpad will not work.
eaaf41d
eaaf41d
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=69731
eaaf41d
BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1111138
eaaf41d
Cc: stable@vger.kernel.org
eaaf41d
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
eaaf41d
---
eaaf41d
 drivers/input/serio/i8042-x86ia64io.h | 16 ++++++++++++++++
eaaf41d
 1 file changed, 16 insertions(+)
eaaf41d
eaaf41d
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h
eaaf41d
index a0bcbb64d06d..aa9b299f4e26 100644
eaaf41d
--- a/drivers/input/serio/i8042-x86ia64io.h
eaaf41d
+++ b/drivers/input/serio/i8042-x86ia64io.h
eaaf41d
@@ -364,6 +364,22 @@ static const struct dmi_system_id __initconst i8042_dmi_notimeout_table[] = {
eaaf41d
 		},
eaaf41d
 	},
eaaf41d
 	{
eaaf41d
+		/* Fujitsu A544 laptop */
eaaf41d
+		/* https://bugzilla.redhat.com/show_bug.cgi?id=1111138 */
eaaf41d
+		.matches = {
eaaf41d
+			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
eaaf41d
+			DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK A544"),
eaaf41d
+		},
eaaf41d
+	},
eaaf41d
+	{
eaaf41d
+		/* Fujitsu AH544 laptop */
eaaf41d
+		/* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */
eaaf41d
+		.matches = {
eaaf41d
+			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
eaaf41d
+			DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK AH544"),
eaaf41d
+		},
eaaf41d
+	},
eaaf41d
+	{
eaaf41d
 		/* Fujitsu U574 laptop */
eaaf41d
 		/* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */
eaaf41d
 		.matches = {
eaaf41d
-- 
eaaf41d
1.9.3
eaaf41d