From 77b6db948ddf119405870a05edaf4eba2d64d062 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 15 Apr 2002 20:42:40 +0000 Subject: [PATCH] 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 --- sys/dev/sound/pci/ich.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c index c6392855dab..5a36b66cd5b 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; }