summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-30 15:01:51 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-30 15:01:51 +0000
commitd1918a04999db403b18d9a2070a31b9f85b52bea (patch)
tree0df414e37c61ee00c13b531119b4299ba4782ecd /sys/dev/ic
parent6e3fa11955dd8e4a96ca5e0ba97d9e2cb033b8f9 (diff)
cominit is used from the outside (the alpha port)
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/com.c4
-rw-r--r--sys/dev/ic/comvar.h3
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index 87b8d969f19..1a4748a826e 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com.c,v 1.24 1996/10/22 01:11:50 downsj Exp $ */
+/* $OpenBSD: com.c,v 1.25 1996/10/30 15:01:49 niklas Exp $ */
/* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */
/*-
@@ -166,8 +166,6 @@ struct cfdriver com_cd = {
NULL, "com", DV_TTY
};
-void cominit __P((bus_chipset_tag_t, bus_io_handle_t, int));
-
#ifndef CONSPEED
#define CONSPEED B9600
#endif
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h
index 5ba78c6dd16..ece4b98bb73 100644
--- a/sys/dev/ic/comvar.h
+++ b/sys/dev/ic/comvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: comvar.h,v 1.3 1996/05/10 12:37:14 deraadt Exp $ */
+/* $OpenBSD: comvar.h,v 1.4 1996/10/30 15:01:50 niklas Exp $ */
/* $NetBSD: comvar.h,v 1.5 1996/05/05 19:50:47 christos Exp $ */
/*
@@ -41,6 +41,7 @@ struct commulti_attach_args {
};
int comprobe1 __P((bus_chipset_tag_t, bus_io_handle_t, int));
+void cominit __P((bus_chipset_tag_t, bus_io_handle_t, int));
int comintr __P((void *));
extern int comconsaddr;