summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/dev/cl.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-02-10 10:06:49 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-02-10 10:06:49 +0000
commit3173c27d2e8308fe5b249684fca9fd9b7c4e177a (patch)
tree038a0fd5b3044588d5be669d64be2febf1a8a288 /sys/arch/mvme88k/dev/cl.c
parent877e106aa199d66a24388b46599c39a439dc4568 (diff)
Fix cnprobe() and cninit() prototypes.
Also, provide a better test for bugtty attachment.
Diffstat (limited to 'sys/arch/mvme88k/dev/cl.c')
-rw-r--r--sys/arch/mvme88k/dev/cl.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/sys/arch/mvme88k/dev/cl.c b/sys/arch/mvme88k/dev/cl.c
index 597c2eb1cb0..713e66f638b 100644
--- a/sys/arch/mvme88k/dev/cl.c
+++ b/sys/arch/mvme88k/dev/cl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cl.c,v 1.37 2004/01/14 20:50:48 miod Exp $ */
+/* $OpenBSD: cl.c,v 1.38 2004/02/10 10:06:48 miod Exp $ */
/*
* Copyright (c) 1995 Dale Rahn. All rights reserved.
@@ -145,12 +145,8 @@ struct {
};
/* prototypes */
-int clcnprobe(struct consdev *cp);
-int clcninit(struct consdev *cp);
+cons_decl(cl);
int cl_instat(struct clsoftc *sc);
-int clcngetc(dev_t dev);
-void clcnputc(dev_t dev, u_char c);
-void clcnpollc(dev_t, int);
u_char cl_clkdiv(int speed);
u_char cl_clknum(int speed);
u_char cl_clkrxtimeout(int speed);
@@ -915,7 +911,7 @@ clstop(tp, flag)
* pcc2 space and Cirrus chip area.
*/
-int
+void
clcnprobe(cp)
struct consdev *cp;
{
@@ -926,7 +922,7 @@ clcnprobe(cp)
/* bomb if it'a a MVME188 */
if (brdtyp == BRD_188) {
cp->cn_pri = CN_DEAD;
- return 0;
+ return;
}
/* locate the major number */
for (maj = 0; maj < nchrdev; maj++)
@@ -934,11 +930,9 @@ clcnprobe(cp)
break;
cp->cn_dev = makedev (maj, 0);
cp->cn_pri = CN_NORMAL;
-
- return 1;
}
-int
+void
clcninit(cp)
struct consdev *cp;
{
@@ -977,7 +971,6 @@ clcninit(cp)
cl_reg->cl_lnxt = 0x00;
cl_reg->cl_cpsr = 0x00;
#endif
- return 0;
}
int