diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2009-05-17 02:28:27 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2009-05-17 02:28:27 +0000 |
commit | 833050520ae37f3c37941b3d9a92b72d3f30ab78 (patch) | |
tree | e7f06183f29178e35056d1ffbad06516a61b821c /sys/dev/pci/azalia_codec.c | |
parent | a6c1d476779bd6f18606622975e3c4ef6e9700a6 (diff) |
recognize more Analog Devices codecs
Diffstat (limited to 'sys/dev/pci/azalia_codec.c')
-rw-r--r-- | sys/dev/pci/azalia_codec.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/sys/dev/pci/azalia_codec.c b/sys/dev/pci/azalia_codec.c index 7480ac9cd44..a088328a49d 100644 --- a/sys/dev/pci/azalia_codec.c +++ b/sys/dev/pci/azalia_codec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: azalia_codec.c,v 1.123 2009/05/12 09:32:28 jakemsr Exp $ */ +/* $OpenBSD: azalia_codec.c,v 1.124 2009/05/17 02:28:26 jakemsr Exp $ */ /* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */ /*- @@ -189,6 +189,15 @@ azalia_codec_init_vtbl(codec_t *this) case 0x111d76d5: this->name = "IDT 92HD81B1C"; break; + case 0x11d4184a: + this->name = "Analog Devices AD1884A"; + break; + case 0x11d41882: + this->name = "Analog Devices AD1882"; + break; + case 0x11d41883: + this->name = "Analog Devices AD1883"; + break; case 0x11d41884: this->name = "Analog Devices AD1884"; break; @@ -210,6 +219,15 @@ azalia_codec_init_vtbl(codec_t *this) case 0x11d4198b: this->name = "Analog Devices AD1988B"; break; + case 0x11d4882a: + this->name = "Analog Devices AD1882A"; + break; + case 0x11d4989a: + this->name = "Analog Devices AD1989A"; + break; + case 0x11d4989b: + this->name = "Analog Devices AD1989B"; + break; case 0x14f15045: this->name = "Conexant CX20549"; /* Venice */ break; |