diff options
author | ariff <ariff@FreeBSD.org> | 2006-04-03 17:37:27 +0000 |
---|---|---|
committer | ariff <ariff@FreeBSD.org> | 2006-04-03 17:37:27 +0000 |
commit | 5980319eac8214d3d65855572f5ac592993b8e8d (patch) | |
tree | a5399e7209bae8568947d8dc5cc17dbf06adfb7e | |
parent | 56cba4038add12f6239424c0712aec3dec008405 (diff) | |
download | FreeBSD-src-5980319eac8214d3d65855572f5ac592993b8e8d.zip FreeBSD-src-5980319eac8214d3d65855572f5ac592993b8e8d.tar.gz |
Add device ID for nForce 410 MCP audio controller.
PR: kern/95257
Submitted by: cenix <cenixxx at gmail dot com>
MFC after: 3 days
-rw-r--r-- | sys/dev/sound/pci/ich.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c index 2a67a70..1cc1a42 100644 --- a/sys/dev/sound/pci/ich.c +++ b/sys/dev/sound/pci/ich.c @@ -63,6 +63,7 @@ SND_DECLARE_FILE("$FreeBSD$"); #define NVIDIA_NFORCE3 0x00da #define NVIDIA_NFORCE3_250 0x00ea #define NVIDIA_NFORCE4 0x0059 +#define NVIDIA_NFORCE_410_MCP 0x026b #define AMD_768 0x7445 #define AMD_8111 0x746d @@ -111,6 +112,8 @@ static const struct ich_type { "nVidia nForce3 250" }, { NVIDIA_VENDORID, NVIDIA_NFORCE4, 0, "nVidia nForce4" }, + { NVIDIA_VENDORID, NVIDIA_NFORCE_410_MCP, 0, + "nVidia nForce 410 MCP" }, { AMD_VENDORID, AMD_768, 0, "AMD-768" }, { AMD_VENDORID, AMD_8111, 0, |