summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-04-15 20:42:40 +0000
committerjhb <jhb@FreeBSD.org>2002-04-15 20:42:40 +0000
commitcb08e4ed366c91432f24babc437094fa26f67c21 (patch)
tree2202b6be4d94175024a96702d65bfe18a229b800 /sys/dev
parentb297f3946ccfa3c6853077d3f36999f667a7c913 (diff)
downloadFreeBSD-src-cb08e4ed366c91432f24babc437094fa26f67c21.zip
FreeBSD-src-cb08e4ed366c91432f24babc437094fa26f67c21.tar.gz
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
Diffstat (limited to 'sys/dev')
-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 c639285..5a36b66 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;
}
OpenPOWER on IntegriCloud