diff options
| author | drochner <drochner@NetBSD.org> | 2003-03-21 17:23:22 +0000 |
|---|---|---|
| committer | drochner <drochner@NetBSD.org> | 2003-03-21 17:23:22 +0000 |
| commit | 05bdb0b97df2c8ef39de7472fac5ffdff97df206 (patch) | |
| tree | 9549fd31766a7359c33278eccd7aca16fb6daa25 /sys | |
| parent | 94918ed1902aa67aa5b690894d5a5aa499130c35 (diff) | |
make these compile after struct consdev change
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/pmax/dev/dc.c | 7 | ||||
| -rw-r--r-- | sys/arch/pmax/dev/dtop.c | 7 | ||||
| -rw-r--r-- | sys/arch/pmax/tc/scc.c | 7 |
3 files changed, 12 insertions, 9 deletions
diff --git a/sys/arch/pmax/dev/dc.c b/sys/arch/pmax/dev/dc.c index 2becee1daea..358a1fe0f49 100644 --- a/sys/arch/pmax/dev/dc.c +++ b/sys/arch/pmax/dev/dc.c @@ -1,4 +1,4 @@ -/* $NetBSD: dc.c,v 1.71 2002/10/23 09:11:46 jdolecek Exp $ */ +/* $NetBSD: dc.c,v 1.72 2003/03/21 17:23:22 drochner Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -39,7 +39,7 @@ */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: dc.c,v 1.71 2002/10/23 09:11:46 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dc.c,v 1.72 2003/03/21 17:23:22 drochner Exp $"); /* * devDC7085.c -- @@ -203,7 +203,8 @@ static struct dc_softc coldcons_softc; /* XXX move back into dc_consinit when debugged */ static struct consdev dccons = { - NULL, NULL, dcGetc, dcPutc, dcPollc, NULL, NODEV, CN_REMOTE + NULL, NULL, dcGetc, dcPutc, dcPollc, NULL, NULL, NULL, + NODEV, CN_REMOTE }; void diff --git a/sys/arch/pmax/dev/dtop.c b/sys/arch/pmax/dev/dtop.c index a89c0a967c0..d9f159f17bc 100644 --- a/sys/arch/pmax/dev/dtop.c +++ b/sys/arch/pmax/dev/dtop.c @@ -1,4 +1,4 @@ -/* $NetBSD: dtop.c,v 1.63 2003/01/18 06:15:23 thorpej Exp $ */ +/* $NetBSD: dtop.c,v 1.64 2003/03/21 17:23:22 drochner Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -94,7 +94,7 @@ SOFTWARE. ********************************************************/ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: dtop.c,v 1.63 2003/01/18 06:15:23 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dtop.c,v 1.64 2003/03/21 17:23:22 drochner Exp $"); #include "opt_ddb.h" #include "rasterconsole.h" @@ -203,7 +203,8 @@ static u_char divend[NUMDIVS] = {0xff, 0xa5, 0xbc, 0xbe, 0xb2, 0xaf, 0xa8, static u_long keymodes[8] = {0, 0, 0, 0, 0, 0x0003e800, 0, 0}; struct consdev dtopcons = { - NULL, NULL, (void *)dtopKBDGetc, NULL, NULL, NULL, NODEV, 0 + NULL, NULL, (void *)dtopKBDGetc, NULL, NULL, NULL, NULL, NULL, + NODEV, 0 }; void dtikbd_cnattach __P((void)); /* XXX */ diff --git a/sys/arch/pmax/tc/scc.c b/sys/arch/pmax/tc/scc.c index 835480c8568..c8a1bc22637 100644 --- a/sys/arch/pmax/tc/scc.c +++ b/sys/arch/pmax/tc/scc.c @@ -1,4 +1,4 @@ -/* $NetBSD: scc.c,v 1.78 2003/02/23 03:37:40 simonb Exp $ */ +/* $NetBSD: scc.c,v 1.79 2003/03/21 17:23:23 drochner Exp $ */ /* * Copyright (c) 1991,1990,1989,1994,1995,1996 Carnegie Mellon University @@ -66,7 +66,7 @@ */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: scc.c,v 1.78 2003/02/23 03:37:40 simonb Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scc.c,v 1.79 2003/03/21 17:23:23 drochner Exp $"); /* * Intel 82530 dual usart chip driver. Supports the serial port(s) on the @@ -262,7 +262,8 @@ static int sccintr __P((void *)); scc_regmap_t *scc_cons_addr = 0; static struct scc_softc coldcons_softc; static struct consdev scccons = { - NULL, NULL, sccGetc, sccPutc, sccPollc, NULL, NODEV, 0 + NULL, NULL, sccGetc, sccPutc, sccPollc, NULL, NULL, NULL, + NODEV, 0 }; void |
