diff options
author | 2019-08-07 22:03:43 +0000 | |
---|---|---|
committer | 2019-08-07 22:03:43 +0000 | |
commit | cdab5540ffcfbb2efcbf78d94159bdcb8fb00872 (patch) | |
tree | 1b1248842145a775f09d0badc54637b4b66164e0 | |
parent | Report changes in the size of data symbols, which require a major bump (diff) | |
download | wireguard-openbsd-cdab5540ffcfbb2efcbf78d94159bdcb8fb00872.tar.xz wireguard-openbsd-cdab5540ffcfbb2efcbf78d94159bdcb8fb00872.zip |
recognize the Realtek ALC285
-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; |