summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2002-01-09 19:27:27 +0000
committermickey <mickey@openbsd.org>2002-01-09 19:27:27 +0000
commitb51f68a2d8c4f7417e5a323904793b3190658e7a (patch)
tree60187091e8a6c01c0166cae13c83b116cad9ab29
parentmake sure we use lkmfree() in error cases as well. (diff)
downloadwireguard-openbsd-b51f68a2d8c4f7417e5a323904793b3190658e7a.tar.xz
wireguard-openbsd-b51f68a2d8c4f7417e5a323904793b3190658e7a.zip
add ess1921 codec id
-rw-r--r--sys/dev/ic/ac97.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/ic/ac97.c b/sys/dev/ic/ac97.c
index 41189efce83..3759dee22af 100644
--- a/sys/dev/ic/ac97.c
+++ b/sys/dev/ic/ac97.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ac97.c,v 1.27 2001/12/17 16:22:58 mickey Exp $ */
+/* $OpenBSD: ac97.c,v 1.28 2002/01/09 19:27:27 mickey Exp $ */
/*
* Copyright (c) 1999, 2000 Constantine Sapuntzakis
@@ -335,6 +335,8 @@ const struct ac97_codecid {
{ 0x40, 0xf8, 7, 0, "CS4201" },
{ 0x50, 0xf8, 7, 0, "CS4205" },
{ 0x60, 0xf8, 7, 0, "CS4291" },
+}, ac97_es[] = {
+ { 0x08, 0xff, 0, 0, "ES1921" },
}, ac97_is[] = {
{ 0x00, 0xff, 0, 0, "HMP9701" },
}, ac97_ic[] = {
@@ -385,6 +387,7 @@ const struct ac97_vendorid {
{ 0x414c4700, "Avance Logic", cl(ac97_av) },
{ 0x414c4300, "Realtek", cl(ac97_rl) },
{ 0x43525900, "Cirrus Logic", cl(ac97_cs) },
+ { 0x45838300, "ESS Technology", cl(ac97_es) },
{ 0x48525300, "Intersil", cl(ac97_is) },
{ 0x49434500, "ICEnsemble", cl(ac97_ic) },
{ 0x4e534300, "National Semiconductor", cl(ac97_ns) },