diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2005-04-02 01:10:09 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-04-02 01:10:09 +0000 |
| commit | 824a5e96dc28e3a2b48c4eb714bfb98efff1c8c4 (patch) | |
| tree | 15da74d8795d6b043263676c721841487b9de56f | |
| parent | f150fe13944a0d02ec8d2d38cf00efb1f092819b (diff) | |
Notes
| -rw-r--r-- | sys/dev/agp/agp_amd64.c | 2 | ||||
| -rw-r--r-- | sys/dev/agp/agp_nvidia.c | 2 | ||||
| -rw-r--r-- | sys/pci/agp_amd64.c | 2 | ||||
| -rw-r--r-- | sys/pci/agp_nvidia.c | 2 |
4 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/agp/agp_amd64.c b/sys/dev/agp/agp_amd64.c index 2224aff9c0fc..4840d58889f2 100644 --- a/sys/dev/agp/agp_amd64.c +++ b/sys/dev/agp/agp_amd64.c @@ -82,6 +82,8 @@ agp_amd64_match(device_t dev) return ("AMD 8151 AGP graphics tunnel"); case 0x07551039: return ("SiS 755 host to AGP bridge"); + case 0x00d110de: + return ("NVIDIA nForce3 AGP Controller"); case 0x02041106: return ("VIA 8380 host to PCI bridge"); case 0x02821106: diff --git a/sys/dev/agp/agp_nvidia.c b/sys/dev/agp/agp_nvidia.c index 0d9f5b723e70..e49c1404299d 100644 --- a/sys/dev/agp/agp_nvidia.c +++ b/sys/dev/agp/agp_nvidia.c @@ -109,7 +109,7 @@ agp_nvidia_match (device_t dev) case NVIDIA_DEVICEID_NFORCE2: return ("NVIDIA nForce2 AGP Controller"); } - return ("NVIDIA Generic AGP Controller"); + return (NULL); } static int diff --git a/sys/pci/agp_amd64.c b/sys/pci/agp_amd64.c index 2224aff9c0fc..4840d58889f2 100644 --- a/sys/pci/agp_amd64.c +++ b/sys/pci/agp_amd64.c @@ -82,6 +82,8 @@ agp_amd64_match(device_t dev) return ("AMD 8151 AGP graphics tunnel"); case 0x07551039: return ("SiS 755 host to AGP bridge"); + case 0x00d110de: + return ("NVIDIA nForce3 AGP Controller"); case 0x02041106: return ("VIA 8380 host to PCI bridge"); case 0x02821106: diff --git a/sys/pci/agp_nvidia.c b/sys/pci/agp_nvidia.c index 0d9f5b723e70..e49c1404299d 100644 --- a/sys/pci/agp_nvidia.c +++ b/sys/pci/agp_nvidia.c @@ -109,7 +109,7 @@ agp_nvidia_match (device_t dev) case NVIDIA_DEVICEID_NFORCE2: return ("NVIDIA nForce2 AGP Controller"); } - return ("NVIDIA Generic AGP Controller"); + return (NULL); } static int |
