From 5197cdc1aace0962932dff06f0c0a5fa74905182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sun, 12 Oct 2003 11:51:24 +0000 Subject: [PATCH] Recognize the Avance Logic ALC655 codec found on some ICH4/5-based motherboards, such as the Gigabyte I848P. PR: kern/54176 Submitted by: Chris Keladis Forgotten by: orion --- sys/dev/sound/pcm/ac97.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/sound/pcm/ac97.c b/sys/dev/sound/pcm/ac97.c index 6136c1f59e3..c0d06193b4f 100644 --- a/sys/dev/sound/pcm/ac97.c +++ b/sys/dev/sound/pcm/ac97.c @@ -137,6 +137,7 @@ static struct ac97_codecid ac97codecid[] = { { 0x414c4710, 0x0f, 0, "ALC200", 0 }, { 0x414c4740, 0x0f, 0, "ALC202", 0 }, { 0x414c4720, 0x0f, 0, "ALC650", 0 }, + { 0x414c4760, 0x0f, 0, "ALC655", 0 }, { 0x43525900, 0x07, 0, "CS4297", 0 }, { 0x43525910, 0x07, 0, "CS4297A", 0 }, { 0x43525920, 0x07, 0, "CS4294/98", 0 },