diff options
| author | thorpej <thorpej@NetBSD.org> | 2003-06-14 17:01:06 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2003-06-14 17:01:06 +0000 |
| commit | 0eff67182063296fdff3cc65b22d4e2bd37b026d (patch) | |
| tree | e6e84834f7446c89ef5e4ae39168ef621ebf247f /sys/dev/ic/comvar.h | |
| parent | fee392c19711a257212390df1c60829c45e46e8c (diff) | |
Also pass a type argument to comcnattach() and com_kgdb_attach().
comspeed() (and thus cominit()) may need this information.
Diffstat (limited to 'sys/dev/ic/comvar.h')
| -rw-r--r-- | sys/dev/ic/comvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h index 393362ad847..1552e2686dd 100644 --- a/sys/dev/ic/comvar.h +++ b/sys/dev/ic/comvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: comvar.h,v 1.45 2003/06/14 16:25:53 thorpej Exp $ */ +/* $NetBSD: comvar.h,v 1.46 2003/06/14 17:01:06 thorpej Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -46,10 +46,10 @@ #include <sys/lock.h> #endif -int comcnattach __P((bus_space_tag_t, bus_addr_t, int, int, tcflag_t)); +int comcnattach __P((bus_space_tag_t, bus_addr_t, int, int, int, tcflag_t)); #ifdef KGDB -int com_kgdb_attach __P((bus_space_tag_t, bus_addr_t, int, int, tcflag_t)); +int com_kgdb_attach __P((bus_space_tag_t, bus_addr_t, int, int, int, tcflag_t)); #endif int com_is_console __P((bus_space_tag_t, bus_addr_t, bus_space_handle_t *)); |
