summaryrefslogtreecommitdiff
path: root/sys/dev/ic/z8530sc.c
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-01-15 05:35:48 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-01-15 05:35:48 +0000
commit38a0537c79c088049ded09e18103dfbdd179f900 (patch)
treef92be428050162d6fbf05c731ce2798fd4477144 /sys/dev/ic/z8530sc.c
parent44a2e9ca3d169429db3ac5422139c6a75c9c3ab6 (diff)
more missing prototypes and other warnings fixed
Diffstat (limited to 'sys/dev/ic/z8530sc.c')
-rw-r--r--sys/dev/ic/z8530sc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/ic/z8530sc.c b/sys/dev/ic/z8530sc.c
index 59e9b22f3cd..a418fecd36f 100644
--- a/sys/dev/ic/z8530sc.c
+++ b/sys/dev/ic/z8530sc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: z8530sc.c,v 1.3 1996/05/26 00:27:06 deraadt Exp $ */
+/* $OpenBSD: z8530sc.c,v 1.4 1997/01/15 05:35:46 kstailey Exp $ */
/* $NetBSD: z8530sc.c,v 1.4 1996/05/17 19:30:34 gwr Exp $ */
/*
@@ -68,7 +68,10 @@
#include <dev/ic/z8530reg.h>
#include <machine/z8530var.h>
-int
+static void zsnull_intr __P((struct zs_chanstate *));
+static void zsnull_softint __P((struct zs_chanstate *));
+
+void
zs_break(cs, set)
struct zs_chanstate *cs;
int set;
@@ -143,7 +146,6 @@ zs_loadchannelregs(cs)
struct zs_chanstate *cs;
{
u_char *reg;
- int i;
/* Copy "pending" regs to "current" */
bcopy((caddr_t)cs->cs_preg, (caddr_t)cs->cs_creg, 16);