From 495a186e6c2a9831e29bf96e9dd5b12b73f4a4f2 Mon Sep 17 00:00:00 2001 From: brad Date: Mon, 6 Jan 2014 06:54:15 +0000 Subject: [PATCH] Recognize the ALC292 --- sys/dev/pci/azalia_codec.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 */ -- 2.20.1