diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-30 15:01:51 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-30 15:01:51 +0000 |
commit | d1918a04999db403b18d9a2070a31b9f85b52bea (patch) | |
tree | 0df414e37c61ee00c13b531119b4299ba4782ecd /sys/dev/ic | |
parent | 6e3fa11955dd8e4a96ca5e0ba97d9e2cb033b8f9 (diff) |
cominit is used from the outside (the alpha port)
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/com.c | 4 | ||||
-rw-r--r-- | sys/dev/ic/comvar.h | 3 |
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; |