Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: i8042 - add Dell Vostro 1320, 1520 and 1720 to the reset list

These laptops often leave i8042 in a wierd state resulting in non-
operational touchpad and keyboard.

Signed-off-by: Anisse Astier <anisse@astier.eu>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Anisse Astier and committed by
Linus Torvalds
049e2d13 0a45281f

+21
+21
drivers/input/serio/i8042-x86ia64io.h
··· 447 447 DMI_MATCH(DMI_PRODUCT_NAME, "N10"), 448 448 }, 449 449 }, 450 + { 451 + .ident = "Dell Vostro 1320", 452 + .matches = { 453 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 454 + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1320"), 455 + }, 456 + }, 457 + { 458 + .ident = "Dell Vostro 1520", 459 + .matches = { 460 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 461 + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1520"), 462 + }, 463 + }, 464 + { 465 + .ident = "Dell Vostro 1720", 466 + .matches = { 467 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 468 + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1720"), 469 + }, 470 + }, 450 471 { } 451 472 }; 452 473