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

Input: i8042 - add some extra PNP keyboard types

Some Japanese machines declare their keyboard with a different PNP ID.
Add it to the list of probed device IDs. While we're at it, add all the
other IDs that Windows binds to - we'll probably never see them in the
real world, but it doesn't hurt.

Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>

authored by

Matthew Garrett and committed by
Dmitry Torokhov
09fac079 af8b01b0

+13
+13
drivers/input/serio/i8042-x86ia64io.h
··· 660 660 } 661 661 662 662 static struct pnp_device_id pnp_kbd_devids[] = { 663 + { .id = "PNP0300", .driver_data = 0 }, 664 + { .id = "PNP0301", .driver_data = 0 }, 665 + { .id = "PNP0302", .driver_data = 0 }, 663 666 { .id = "PNP0303", .driver_data = 0 }, 667 + { .id = "PNP0304", .driver_data = 0 }, 668 + { .id = "PNP0305", .driver_data = 0 }, 669 + { .id = "PNP0306", .driver_data = 0 }, 670 + { .id = "PNP0309", .driver_data = 0 }, 671 + { .id = "PNP030a", .driver_data = 0 }, 664 672 { .id = "PNP030b", .driver_data = 0 }, 673 + { .id = "PNP0320", .driver_data = 0 }, 674 + { .id = "PNP0343", .driver_data = 0 }, 675 + { .id = "PNP0344", .driver_data = 0 }, 676 + { .id = "PNP0345", .driver_data = 0 }, 677 + { .id = "CPQA0D7", .driver_data = 0 }, 665 678 { .id = "", }, 666 679 }; 667 680