diff options
author | takawata <takawata@FreeBSD.org> | 2006-03-15 07:04:33 +0000 |
---|---|---|
committer | takawata <takawata@FreeBSD.org> | 2006-03-15 07:04:33 +0000 |
commit | 27a5754a568d5f619a6dc4104dccf9b4eecd1676 (patch) | |
tree | 23df9242a06cbe0c38bee010cf9de4430fac2698 | |
parent | 3cfe57f1122a444de6d426f8209a0b1ffcea34f6 (diff) | |
download | FreeBSD-src-27a5754a568d5f619a6dc4104dccf9b4eecd1676.zip FreeBSD-src-27a5754a568d5f619a6dc4104dccf9b4eecd1676.tar.gz |
Add ALPS glide point ID and some compatibility IDs.
PR: kern/75008
-rw-r--r-- | sys/dev/atkbdc/psm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/atkbdc/psm.c b/sys/dev/atkbdc/psm.c index c156cee..645d77b 100644 --- a/sys/dev/atkbdc/psm.c +++ b/sys/dev/atkbdc/psm.c @@ -3565,9 +3565,12 @@ static driver_t psmcpnp_driver = { static struct isa_pnp_id psmcpnp_ids[] = { { 0x030fd041, "PS/2 mouse port" }, /* PNP0F03 */ + { 0x0e0fd041, "PS/2 mouse port" }, /* PNP0F0E */ + { 0x120fd041, "PS/2 mouse port" }, /* PNP0F12 */ { 0x130fd041, "PS/2 mouse port" }, /* PNP0F13 */ { 0x1303d041, "PS/2 port" }, /* PNP0313, XXX */ { 0x02002e4f, "Dell PS/2 mouse port" }, /* Lat. X200, Dell */ + { 0x0002a906, "ALPS Glide Point" }, /* ALPS Glide Point */ { 0x80374d24, "IBM PS/2 mouse port" }, /* IBM3780, ThinkPad */ { 0x81374d24, "IBM PS/2 mouse port" }, /* IBM3781, ThinkPad */ { 0x0190d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9001, Vaio */ |