aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-04-15 20:42:40 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-04-15 20:42:40 +0000
commit77b6db948ddf119405870a05edaf4eba2d64d062 (patch)
tree2202b6be4d94175024a96702d65bfe18a229b800 /sys
parentcb81cd7952532a3b567d51fd7065c5e7aa284465 (diff)
downloadsrc-77b6db948ddf119405870a05edaf4eba2d64d062.tar.gz
src-77b6db948ddf119405870a05edaf4eba2d64d062.zip
Recognize the AC97 interface to the onboard sound controller on the Nvidia
nForce chipset. Playback at least seems to work fine with the ich driver out of the box. Sponsored by: The Weather Channel Help from: cg
Notes
Notes: svn path=/head/; revision=94798
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sound/pci/ich.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c
index c6392855dabe..5a36b66cd5bc 100644
--- a/sys/dev/sound/pci/ich.c
+++ b/sys/dev/sound/pci/ich.c
@@ -606,6 +606,10 @@ ich_pci_probe(device_t dev)
device_set_desc(dev, "SiS 7012");
return 0;
+ case 0x01b110de:
+ device_set_desc(dev, "Nvidia nForce AC97 controller");
+ return 0;
+
default:
return ENXIO;
}