blob: 433812e40a4af4b55a0a9458f2ac8b361edd588a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h
index 4b0201c..b5240b1 100644
--- a/drivers/input/serio/i8042-acpipnpio.h
+++ b/drivers/input/serio/i8042-acpipnpio.h
@@ -146,6 +146,16 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = {
},
.driver_data = (void *)(SERIO_QUIRK_RESET_NEVER)
},
+ /*
+ * Above issue also appears on Dell Latitude D630
+ */
+ {
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D630"),
+ },
+ .driver_data = (void *)(SERIO_QUIRK_RESET_NEVER)
+ },
{
/* ASUS P65UP5 - AUX LOOP command does not raise AUX IRQ */
.matches = {
|