From 08945e887f1c97fe9c71b8acbae30aedde7734b3 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Tue, 30 May 2006 18:41:26 +0000 Subject: [PATCH] Move SiS 760 to where it belongs. PR: 98094 Submitted by: Mike M < mmcgus at yahoo dot com > --- sys/dev/agp/agp_amd64.c | 2 ++ sys/dev/agp/agp_sis.c | 2 -- sys/pci/agp_amd64.c | 2 ++ sys/pci/agp_sis.c | 2 -- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/agp/agp_amd64.c b/sys/dev/agp/agp_amd64.c index c0f06e94e17..2e949e5e14f 100644 --- a/sys/dev/agp/agp_amd64.c +++ b/sys/dev/agp/agp_amd64.c @@ -97,6 +97,8 @@ agp_amd64_match(device_t dev) return ("AMD 8151 AGP graphics tunnel"); case 0x07551039: return ("SiS 755 host to AGP bridge"); + case 0x07601039: + return ("SiS 760 host to AGP bridge"); case 0x168910b9: return ("ULi M1689 AGP Controller"); case 0x00d110de: diff --git a/sys/dev/agp/agp_sis.c b/sys/dev/agp/agp_sis.c index 867cce3f9bb..3915f5d3dd0 100644 --- a/sys/dev/agp/agp_sis.c +++ b/sys/dev/agp/agp_sis.c @@ -103,8 +103,6 @@ agp_sis_match(device_t dev) return ("SiS 745 host to AGP bridge"); case 0x07461039: return ("SiS 746 host to AGP bridge"); - case 0x07601039: - return ("SiS 760 host to AGP bridge"); }; return NULL; diff --git a/sys/pci/agp_amd64.c b/sys/pci/agp_amd64.c index c0f06e94e17..2e949e5e14f 100644 --- a/sys/pci/agp_amd64.c +++ b/sys/pci/agp_amd64.c @@ -97,6 +97,8 @@ agp_amd64_match(device_t dev) return ("AMD 8151 AGP graphics tunnel"); case 0x07551039: return ("SiS 755 host to AGP bridge"); + case 0x07601039: + return ("SiS 760 host to AGP bridge"); case 0x168910b9: return ("ULi M1689 AGP Controller"); case 0x00d110de: diff --git a/sys/pci/agp_sis.c b/sys/pci/agp_sis.c index 867cce3f9bb..3915f5d3dd0 100644 --- a/sys/pci/agp_sis.c +++ b/sys/pci/agp_sis.c @@ -103,8 +103,6 @@ agp_sis_match(device_t dev) return ("SiS 745 host to AGP bridge"); case 0x07461039: return ("SiS 746 host to AGP bridge"); - case 0x07601039: - return ("SiS 760 host to AGP bridge"); }; return NULL;