summaryrefslogtreecommitdiff
path: root/sys/dev/isa/ics2101.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-07 07:38:52 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-07 07:38:52 +0000
commita18dd829375e446ca22af98dc283f34da965edbc (patch)
tree0c5bbc9a1a0ce73f792bd62db356a18c8af92e32 /sys/dev/isa/ics2101.c
parentc78ff01b45ca78d491b3e8db520c2cb877a273d4 (diff)
sync with 0504 -- prototypes and bus.h
Diffstat (limited to 'sys/dev/isa/ics2101.c')
-rw-r--r--sys/dev/isa/ics2101.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/isa/ics2101.c b/sys/dev/isa/ics2101.c
index 97bd6f97502..458d1424ffd 100644
--- a/sys/dev/isa/ics2101.c
+++ b/sys/dev/isa/ics2101.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: ics2101.c,v 1.2 1996/03/08 16:42:57 niklas Exp $ */
-/* $NetBSD: ics2101.c,v 1.3 1996/02/05 02:22:11 jtc Exp $ */
+/* $OpenBSD: ics2101.c,v 1.3 1996/05/07 07:36:42 deraadt Exp $ */
+/* $NetBSD: ics2101.c,v 1.4 1996/04/29 20:03:10 christos Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -68,6 +68,8 @@
#define cvt_value(val) ((val) >> 1)
+static void ics2101_mix_doit __P((struct ics2101_softc *, u_int, u_int, u_int,
+ u_int));
/*
* Program one channel of the ICS mixer
*/
@@ -76,7 +78,7 @@
static void
ics2101_mix_doit(sc, chan, side, value, flags)
struct ics2101_softc *sc;
- unsigned int chan, side, value, flags;
+ u_int chan, side, value, flags;
{
unsigned char flip_left[6] = {0x01, 0x01, 0x01, 0x02, 0x01, 0x02};
unsigned char flip_right[6] = {0x02, 0x02, 0x02, 0x01, 0x02, 0x01};