aboutsummaryrefslogtreecommitdiff
path: root/sys/isa
diff options
context:
space:
mode:
authorMurray Stokely <murray@FreeBSD.org>2001-09-16 11:14:56 +0000
committerMurray Stokely <murray@FreeBSD.org>2001-09-16 11:14:56 +0000
commit0aef0b4d6b64953f949878f3fb88cd6dfb21f8b2 (patch)
tree7d3a0fa688435ae4ef7a0b1e1ef81d7e683d90e5 /sys/isa
parent2e9122ea5b77a1cb63a535d2a91fe42f5b8070ae (diff)
downloadsrc-0aef0b4d6b64953f949878f3fb88cd6dfb21f8b2.tar.gz
src-0aef0b4d6b64953f949878f3fb88cd6dfb21f8b2.zip
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.
Notes
Notes: svn path=/head/; revision=83546
Diffstat (limited to 'sys/isa')
-rw-r--r--sys/isa/sio.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/isa/sio.c b/sys/isa/sio.c
index 05d8f358b27e..5053886fe01f 100644
--- a/sys/isa/sio.c
+++ b/sys/isa/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 }
};