From 18f839d3f2bc36f2a3d30c89fcc3d8c0eb011f89 Mon Sep 17 00:00:00 2001 From: jhb Date: Fri, 27 Jun 2003 18:17:06 +0000 Subject: Sort the list of PCI ID's in numerical order and fix a whitespace bogon. --- sys/pci/agp_via.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/pci/agp_via.c') diff --git a/sys/pci/agp_via.c b/sys/pci/agp_via.c index d88b160..c1ec049 100644 --- a/sys/pci/agp_via.c +++ b/sys/pci/agp_via.c @@ -65,18 +65,18 @@ agp_via_match(device_t dev) return NULL; switch (pci_get_devid(dev)) { + case 0x03051106: + return ("VIA 82C8363 (Apollo KT133A) host to PCI bridge"); case 0x05011106: return ("VIA 8501 (Apollo MVP4) host to PCI bridge"); case 0x05971106: return ("VIA 82C597 (Apollo VP3) host to PCI bridge"); case 0x05981106: return ("VIA 82C598 (Apollo MVP3) host to PCI bridge"); - case 0x06911106: - return ("VIA 82C691 (Apollo Pro) host to PCI bridge"); case 0x06051106: return ("VIA 82C694X (Apollo Pro 133A) host to PCI bridge"); - case 0x03051106: - return ("VIA 82C8363 (Apollo KT133A) host to PCI bridge"); + case 0x06911106: + return ("VIA 82C691 (Apollo Pro) host to PCI bridge"); }; if (pci_get_vendor(dev) == 0x1106) -- cgit v1.1