diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
commit | e63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch) | |
tree | c2aa960c67a99a878c8902943399029fa598683f /sys/arch/mvme68k/dev | |
parent | 71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff) |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/arch/mvme68k/dev')
-rw-r--r-- | sys/arch/mvme68k/dev/cl.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/dev/sbic.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/dev/wl.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvme68k/dev/cl.c b/sys/arch/mvme68k/dev/cl.c index 66deacb69a6..9bf8c735b4f 100644 --- a/sys/arch/mvme68k/dev/cl.c +++ b/sys/arch/mvme68k/dev/cl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl.c,v 1.24 2002/03/14 01:26:37 millert Exp $ */ +/* $OpenBSD: cl.c,v 1.25 2002/03/14 03:15:56 millert Exp $ */ /* * Copyright (c) 1995 Dale Rahn. All rights reserved. @@ -193,7 +193,7 @@ int clstop(struct tty *tp, int flag); static void cl_initchannel(struct clsoftc *sc, int channel); static void clputc(struct clsoftc *sc, int unit, u_char c); static u_char clgetc(struct clsoftc *sc, int *channel); -static void cloutput __P( (struct tty *tp)); +static void cloutput(struct tty *tp); void cl_softint(struct clsoftc *sc); void cl_appendbufn(struct clsoftc *sc, u_char channel, u_char *buf, u_short cnt); diff --git a/sys/arch/mvme68k/dev/sbic.c b/sys/arch/mvme68k/dev/sbic.c index f396e4bc08b..4845d9173b2 100644 --- a/sys/arch/mvme68k/dev/sbic.c +++ b/sys/arch/mvme68k/dev/sbic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sbic.c,v 1.9 2002/03/14 01:26:37 millert Exp $ */ +/* $OpenBSD: sbic.c,v 1.10 2002/03/14 03:15:56 millert Exp $ */ /* $NetBSD: sbic.c,v 1.2 1996/04/23 16:32:54 chuck Exp $ */ /* @@ -317,7 +317,7 @@ sbic_load_ptrs(dev) for (count = (NBPG - ((int)vaddr & PGOFSET)); count < acb->sc_kv.dc_count && - (char*)kvtop(vaddr + count + 4) == paddr + count + 4; + (char *)kvtop(vaddr + count + 4) == paddr + count + 4; count += NBPG) ; /* Do nothing */ diff --git a/sys/arch/mvme68k/dev/wl.c b/sys/arch/mvme68k/dev/wl.c index 8a5638cea2d..15b9c02f714 100644 --- a/sys/arch/mvme68k/dev/wl.c +++ b/sys/arch/mvme68k/dev/wl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wl.c,v 1.7 2002/03/14 01:26:37 millert Exp $ */ +/* $OpenBSD: wl.c,v 1.8 2002/03/14 03:15:56 millert Exp $ */ /* * Copyright (c) 1995 Dale Rahn. All rights reserved. @@ -197,7 +197,7 @@ int wlstop(struct tty *tp, int flag); static void cl_initchannel(struct wlsoftc *sc, int channel); static void clputc(struct wlsoftc *sc, int unit, u_char c); static u_char clgetc(struct wlsoftc *sc, int *channel); -static void cloutput __P( (struct tty *tp)); +static void cloutput(struct tty *tp); struct cfattach wl_ca = { sizeof(struct wlsoftc), wlprobe, wlattach |