diff options
-rw-r--r-- | sys/dev/ic/com.c | 3 | ||||
-rw-r--r-- | sys/dev/ic/comvar.h | 3 |
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); |