From 0aef0b4d6b64953f949878f3fb88cd6dfb21f8b2 Mon Sep 17 00:00:00 2001 From: Murray Stokely Date: Sun, 16 Sep 2001 11:14:56 +0000 Subject: [PATCH] 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. --- sys/dev/sio/sio.c | 6 ++++-- sys/isa/sio.c | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 05d8f358b27e..5053886fe01f 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 } }; 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 } };