From 3cc412b7837a105c757df856c422eb5f497bad67 Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 2 Apr 2005 01:10:09 +0000 Subject: nVidia AGP chipsets beyond nForce2 are AMD64-specific. So move the AGP support to there. Submitted by: Jung-uk Kim --- sys/dev/agp/agp_amd64.c | 2 ++ sys/dev/agp/agp_nvidia.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/dev/agp') diff --git a/sys/dev/agp/agp_amd64.c b/sys/dev/agp/agp_amd64.c index 2224aff..4840d58 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 0d9f5b7..e49c140 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 -- cgit v1.1