diff options
author | Joshua Stein <jcs@cvs.openbsd.org> | 2019-08-07 22:03:44 +0000 |
---|---|---|
committer | Joshua Stein <jcs@cvs.openbsd.org> | 2019-08-07 22:03:44 +0000 |
commit | 0f56acfa98876c1f8ed417d0460a187c156f1ac0 (patch) | |
tree | d5a16e6a74727f521e4556618cc43c32d5c9e5ac /sys/dev/pci | |
parent | a2627ac322d5bce3c9975e49e36781573610291a (diff) |
recognize the Realtek ALC285
Diffstat (limited to 'sys/dev/pci')
-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 e7c330757a6..04007548000 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.174 2019/05/08 15:33:41 tedu Exp $ */ +/* $OpenBSD: azalia_codec.c,v 1.175 2019/08/07 22:03:43 jcs Exp $ */ /* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */ /*- @@ -124,6 +124,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 0x10ec0285: + this->name = "Realtek ALC285"; + break; case 0x10ec0292: this->name = "Realtek ALC292"; this->qrks |= AZ_QRK_WID_CDIN_1C | AZ_QRK_WID_BEEP_1D; |