summaryrefslogtreecommitdiffstats
path: root/sys/dev/agp
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2003-06-27 18:17:06 +0000
committerjhb <jhb@FreeBSD.org>2003-06-27 18:17:06 +0000
commit18f839d3f2bc36f2a3d30c89fcc3d8c0eb011f89 (patch)
tree9be70232075a9037755e6d6f9745ddd501ca900a /sys/dev/agp
parent0c4853b895391bd867798408f94713ab4c2769f9 (diff)
downloadFreeBSD-src-18f839d3f2bc36f2a3d30c89fcc3d8c0eb011f89.zip
FreeBSD-src-18f839d3f2bc36f2a3d30c89fcc3d8c0eb011f89.tar.gz
Sort the list of PCI ID's in numerical order and fix a whitespace bogon.
Diffstat (limited to 'sys/dev/agp')
-rw-r--r--sys/dev/agp/agp_via.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/agp/agp_via.c b/sys/dev/agp/agp_via.c
index d88b160..c1ec049 100644
--- a/sys/dev/agp/agp_via.c
+++ b/sys/dev/agp/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)
OpenPOWER on IntegriCloud