diff options
author | imp <imp@FreeBSD.org> | 2006-01-15 04:10:47 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-01-15 04:10:47 +0000 |
commit | d0c0ffbbce5411b78818b2c3f9ea39c64fb51e4b (patch) | |
tree | 4cd54566017ffc6c41cc386a267cac643279a20a /sys | |
parent | 22ae7554faea2447aef8a59cf3edb78af62236b4 (diff) | |
download | FreeBSD-src-d0c0ffbbce5411b78818b2c3f9ea39c64fb51e4b.zip FreeBSD-src-d0c0ffbbce5411b78818b2c3f9ea39c64fb51e4b.tar.gz |
Add support for the Compaq LTE docking station. It includes a plug
and play device with the ID of PNP8160. Sotr them while I'm here.
Submitted by: Sean Shapira sds at jazzie dotty com
MFC After: 1 week
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ed/if_ed_isa.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/dev/ed/if_ed_isa.c b/sys/dev/ed/if_ed_isa.c index bd74383..620369e 100644 --- a/sys/dev/ed/if_ed_isa.c +++ b/sys/dev/ed/if_ed_isa.c @@ -55,15 +55,16 @@ static int ed_isa_probe(device_t); static int ed_isa_attach(device_t); static struct isa_pnp_id ed_ids[] = { - { 0x1684a34d, NULL }, /* SMC8416 */ - { 0xd680d041, NULL }, /* PNP80d6 */ - { 0x1980635e, NULL }, /* WSC8019 */ { 0x0131d805, NULL }, /* ANX3101 */ + { 0x4cf48906, NULL }, /* ATIf44c */ { 0x01200507, NULL }, /* AXE2001 */ - { 0x19808c4a, NULL }, /* RTL8019 */ { 0x0090252a, NULL }, /* JQE9000 */ { 0x0020832e, NULL }, /* KTC2000 */ - { 0x4cf48906, NULL }, /* ATIf44c */ + { 0xd680d041, NULL }, /* PNP80d6 */ + { 0x6081d041, NULL }, /* PNP8160 */ + { 0x19808c4a, NULL }, /* RTL8019 */ + { 0x1684a34d, NULL }, /* SMC8416 */ + { 0x1980635e, NULL }, /* WSC8019 */ { 0, NULL } }; |