diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2014-01-06 06:54:16 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2014-01-06 06:54:16 +0000 |
commit | e5169a22fd4ca170c26db0c909d62ce50aa9e4dc (patch) | |
tree | 598418f66cac5024d9bb17a1ed0f1b6b2d752ccf /sys | |
parent | 79f7977c16b1e064423a5d1d79c1aa23c9ac5ea8 (diff) |
Recognize the ALC292
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/azalia_codec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/pci/azalia_codec.c b/sys/dev/pci/azalia_codec.c index 2e016563081..1a6265e1554 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.158 2014/01/02 04:23:35 jsg Exp $ */ +/* $OpenBSD: azalia_codec.c,v 1.159 2014/01/06 06:54:15 brad Exp $ */ /* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */ /*- @@ -100,6 +100,9 @@ azalia_codec_init_vtbl(codec_t *this) this->name = "Realtek ALC282"; this->qrks |= AZ_QRK_WID_CDIN_1C | AZ_QRK_WID_BEEP_1D; break; + case 0x10ec0292: + this->name = "Realtek ALC292"; + break; case 0x10ec0660: this->name = "Realtek ALC660"; if (this->subid == 0x13391043) { /* ASUS_G2K */ |