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;