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/arch/hpcmips/dev | |
| 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/arch/hpcmips/dev')
| -rw-r--r-- | sys/arch/hpcmips/dev/com_hpcio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hpcmips/dev/com_hpcio.c b/sys/arch/hpcmips/dev/com_hpcio.c index b1909fbcf7e..f15aecfd115 100644 --- a/sys/arch/hpcmips/dev/com_hpcio.c +++ b/sys/arch/hpcmips/dev/com_hpcio.c @@ -1,4 +1,4 @@ -/* $NetBSD: com_hpcio.c,v 1.5 2002/10/02 05:26:45 thorpej Exp $ */ +/* $NetBSD: com_hpcio.c,v 1.6 2003/06/14 17:01:12 thorpej Exp $ */ /*- * Copyright (c) 2002 TAKEMRUA Shin. All rights reserved. @@ -220,11 +220,11 @@ com_hpcio_cndb_attach(bus_space_tag_t iot, int iobase, int rate, #ifdef KGDB if (kgdb) return (com_kgdb_attach(com_hpcio_cniot, iobase, rate, - frequency, cflag)); + frequency, COM_TYPE_NORMAL, cflag)); else #endif return (comcnattach(com_hpcio_cniot, iobase, rate, - frequency, cflag)); + frequency, COM_TYPE_NORMAL, cflag)); } static int |
