summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2003-07-15 03:15:59 +0000
committerJason Wright <jason@cvs.openbsd.org>2003-07-15 03:15:59 +0000
commitdcfda0a4a4c0dae6f95fd62132b7f9f3641d8584 (patch)
treee6bf375a2bccc567908cb6b2fbfe1222d394707a /sys
parentfa53e32d7ef76a81d846adf05f0498a9c2ab2f37 (diff)
move prototype for com_raisedtr() to comvar.h (just like pccom).
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/com.c3
-rw-r--r--sys/dev/ic/comvar.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index 9e45a8052f8..f34f3d7f95d 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com.c,v 1.90 2003/06/03 21:09:02 deraadt Exp $ */
+/* $OpenBSD: com.c,v 1.91 2003/07/15 03:15:58 jason Exp $ */
/* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */
/*
@@ -99,7 +99,6 @@ cdev_decl(com);
static u_char tiocm_xxx2mcr(int);
void compwroff(struct com_softc *);
-void com_raisedtr(void *);
void com_enable_debugport(struct com_softc *);
struct cfdriver com_cd = {
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h
index 7d768d25b39..e70a88dc68c 100644
--- a/sys/dev/ic/comvar.h
+++ b/sys/dev/ic/comvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: comvar.h,v 1.32 2003/06/03 21:09:02 deraadt Exp $ */
+/* $OpenBSD: comvar.h,v 1.33 2003/07/15 03:15:58 jason Exp $ */
/* $NetBSD: comvar.h,v 1.5 1996/05/05 19:50:47 christos Exp $ */
/*
@@ -155,6 +155,7 @@ void comcnputc(dev_t, int);
void comcnpollc(dev_t, int);
int com_common_getc(bus_space_tag_t, bus_space_handle_t);
void com_common_putc(bus_space_tag_t, bus_space_handle_t, int);
+void com_raisedtr(void *);
#ifdef KGDB
int com_kgdb_attach(bus_space_tag_t, int, int, int, tcflag_t);