diff options
author | murray <murray@FreeBSD.org> | 2001-09-16 11:14:56 +0000 |
---|---|---|
committer | murray <murray@FreeBSD.org> | 2001-09-16 11:14:56 +0000 |
commit | d9b984188c0347c17c078d7a1394342706db5e2e (patch) | |
tree | 7d3a0fa688435ae4ef7a0b1e1ef81d7e683d90e5 /sys/dev/sio/sio.c | |
parent | 3c93d16ca65df4df680ee9d8779b698245ae5fb3 (diff) | |
download | FreeBSD-src-d9b984188c0347c17c078d7a1394342706db5e2e.zip FreeBSD-src-d9b984188c0347c17c078d7a1394342706db5e2e.tar.gz |
Recognize two cheap PCI 16550 devices :
CyberSerial (1-port) 16550
Oxford Semiconductor Dual Port 16550
Sort the list of PCI devices while I'm here.
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r-- | sys/dev/sio/sio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 05d8f35..5053886 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -578,10 +578,12 @@ struct pci_ids { static struct pci_ids pci_ids[] = { { 0x100812b9, "3COM PCI FaxModem", 0x10 }, - { 0x048011c1, "Lucent kermit based PCI Modem", 0x14 }, - { 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 }, + { 0x2000131f, "CyberSerial (1-port) 16550", 0x10 }, { 0x01101407, "Koutech IOFLEX-2S PCI Dual Port Serial", 0x10 }, { 0x01111407, "Koutech IOFLEX-2S PCI Dual Port Serial", 0x10 }, + { 0x048011c1, "Lucent kermit based PCI Modem", 0x14 }, + { 0x95211415, "Oxford Semiconductor PCI Dual Port Serial", 0x10 }, + { 0x0000151f, "SmartLink 5634PCV SurfRider", 0x10 }, /* { 0xXXXXXXXX, "Xircom Cardbus modem", 0x10 }, */ { 0x00000000, NULL, 0 } }; |