summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/man4/auixp.48
-rw-r--r--share/man/man4/pci.46
-rw-r--r--sys/dev/pci/auixp.c5
3 files changed, 10 insertions, 9 deletions
diff --git a/share/man/man4/auixp.4 b/share/man/man4/auixp.4
index 20de80494a6..5066de49735 100644
--- a/share/man/man4/auixp.4
+++ b/share/man/man4/auixp.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: auixp.4,v 1.9 2008/10/19 03:13:06 brad Exp $
+.\" $OpenBSD: auixp.4,v 1.10 2009/10/12 19:43:52 jakemsr Exp $
.\" $NetBSD: auixp.4,v 1.4 2005/06/22 04:19:09 kent Exp $
.\"
.\" Copyright (c) 2004, 2005 The NetBSD Foundation, Inc.
@@ -30,12 +30,12 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: October 19 2008 $
+.Dd $Mdocdate: October 12 2009 $
.Dt AUIXP 4
.Os
.Sh NAME
.Nm auixp
-.Nd ATI SB200/SB300/SB400 integrated AC'97 audio device
+.Nd ATI SB200/SB300/SB400/SB600 integrated AC'97 audio device
.Sh SYNOPSIS
.Cd "auixp* at pci?
.Cd "audio* at auixp?"
@@ -43,7 +43,7 @@
The
.Nm
device driver supports the integrated AC'97 audio controller
-of the ATI SB200/SB300/SB400 I/O controller hub.
+of the ATI SB200/SB300/SB400/SB600 I/O controller hub.
.Sh SEE ALSO
.Xr ac97 4 ,
.Xr audio 4 ,
diff --git a/share/man/man4/pci.4 b/share/man/man4/pci.4
index cf6915b7d9f..10436dbd871 100644
--- a/share/man/man4/pci.4
+++ b/share/man/man4/pci.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pci.4,v 1.274 2009/08/08 09:31:13 kevlo Exp $
+.\" $OpenBSD: pci.4,v 1.275 2009/10/12 19:43:52 jakemsr Exp $
.\" $NetBSD: pci.4,v 1.29 2000/04/01 00:32:23 tsarna Exp $
.\"
.\" Copyright (c) 2000 Theo de Raadt. All rights reserved.
@@ -31,7 +31,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: August 8 2009 $
+.Dd $Mdocdate: October 12 2009 $
.Dt PCI 4
.Os
.Sh NAME
@@ -344,7 +344,7 @@ AMD Geode LX CS5536 integrated AC'97 audio device
.It Xr auich 4
Intel ICH integrated AC'97 audio device
.It Xr auixp 4
-ATI SB200/SB300/SB400 integrated AC'97 audio device
+ATI SB200/SB300/SB400/SB600 integrated AC'97 audio device
.It Xr autri 4
Trident 4DWAVE-DX/NX, SiS 7018, ALi M5451 audio device
.It Xr auvia 4
diff --git a/sys/dev/pci/auixp.c b/sys/dev/pci/auixp.c
index 5aff1ffc3c3..2564d52164b 100644
--- a/sys/dev/pci/auixp.c
+++ b/sys/dev/pci/auixp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auixp.c,v 1.23 2009/03/29 21:53:52 sthen Exp $ */
+/* $OpenBSD: auixp.c,v 1.24 2009/10/12 19:43:52 jakemsr Exp $ */
/* $NetBSD: auixp.c,v 1.9 2005/06/27 21:13:09 thorpej Exp $ */
/*
@@ -92,7 +92,8 @@
const struct pci_matchid auixp_pci_devices[] = {
{ PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB200_AUDIO },
{ PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB300_AUDIO },
- { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB400_AUDIO }
+ { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB400_AUDIO },
+ { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB600_AUDIO }
};
struct cfdriver auixp_cd = {