summaryrefslogtreecommitdiff
path: root/sys/dev/ic/comvar.h
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2005-10-24 14:22:35 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2005-10-24 14:22:35 +0000
commit0a2f3e21288e3f3f66b9795c012651464c14939e (patch)
treeaffa9bfce83b7763f11df3a41819d75e41676009 /sys/dev/ic/comvar.h
parent96dcd9b3e7ee2e5789b3a2c002b98984715e8c2e (diff)
fix compilation for KGDB; looked by miod@.
Diffstat (limited to 'sys/dev/ic/comvar.h')
-rw-r--r--sys/dev/ic/comvar.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h
index e54172dda18..3cbb457be78 100644
--- a/sys/dev/ic/comvar.h
+++ b/sys/dev/ic/comvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: comvar.h,v 1.36 2005/05/27 18:42:15 uwe Exp $ */
+/* $OpenBSD: comvar.h,v 1.37 2005/10/24 14:22:34 fgsch Exp $ */
/* $NetBSD: comvar.h,v 1.5 1996/05/05 19:50:47 christos Exp $ */
/*
@@ -159,7 +159,11 @@ 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);
+extern bus_addr_t com_kgdb_addr;
+extern bus_space_tag_t com_kgdb_iot;
+extern bus_space_handle_t com_kgdb_ioh;
+
+int com_kgdb_attach(bus_space_tag_t, bus_addr_t, int, int, tcflag_t);
int kgdbintr(void *);
#endif