summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorgarbled <garbled@NetBSD.org>2008-04-28 18:49:27 +0000
committergarbled <garbled@NetBSD.org>2008-04-28 18:49:27 +0000
commitfcdfd014d7d68e4f56f4af41685c1a3b4443428d (patch)
treeb819e7c105e5705e00cae379ed610a30d40979fa /sys/dev/isa
parentefdfaa4756aa6629e72968c31288455f41f4b6a7 (diff)
Minor fixes to some of these files:
Add recognition for the CS4232C revision chip. (0xa2) Make ic/ad1848.c compile with AUDIO_DEBUG Add a needed machine/bus.h include to ic/cs4231.c Add a few additional register defines to ic/cs4231reg.h
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/ad1848_isa.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/isa/ad1848_isa.c b/sys/dev/isa/ad1848_isa.c
index 3a3f56bec22..7fcce884034 100644
--- a/sys/dev/isa/ad1848_isa.c
+++ b/sys/dev/isa/ad1848_isa.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ad1848_isa.c,v 1.34 2008/04/08 20:08:49 cegger Exp $ */
+/* $NetBSD: ad1848_isa.c,v 1.35 2008/04/28 18:49:27 garbled Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -102,7 +102,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ad1848_isa.c,v 1.34 2008/04/08 20:08:49 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ad1848_isa.c,v 1.35 2008/04/28 18:49:27 garbled Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -364,6 +364,9 @@ ad1848_isa_probe(struct ad1848_isa_softc *isc)
case 0x82:
sc->chip_name = "CS4232";
break;
+ case 0xa2:
+ sc->chip_name = "CS4232C";
+ break;
case 0x03:
case 0x83:
sc->chip_name = "CS4236";