diff options
| author | dsl <dsl@NetBSD.org> | 2009-03-14 14:45:51 +0000 |
|---|---|---|
| committer | dsl <dsl@NetBSD.org> | 2009-03-14 14:45:51 +0000 |
| commit | 02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 (patch) | |
| tree | 9a02e625d403e5fcedfdc6be4803e2404356bf31 /sys/arch/atari/dev/ms.c | |
| parent | dfbb3f921a23a1aba4463f31ef9233ac94ce606c (diff) | |
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball.
i386 and amd64 GENERIC and sys still build.
Diffstat (limited to 'sys/arch/atari/dev/ms.c')
| -rw-r--r-- | sys/arch/atari/dev/ms.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/atari/dev/ms.c b/sys/arch/atari/dev/ms.c index 0007904e7c3..03e636e5c97 100644 --- a/sys/arch/atari/dev/ms.c +++ b/sys/arch/atari/dev/ms.c @@ -1,4 +1,4 @@ -/* $NetBSD: ms.c,v 1.21 2009/01/17 05:23:28 tsutsui Exp $ */ +/* $NetBSD: ms.c,v 1.22 2009/03/14 14:45:56 dsl Exp $ */ /* * Copyright (c) 1995 Leo Weppelman. @@ -52,7 +52,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ms.c,v 1.21 2009/01/17 05:23:28 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ms.c,v 1.22 2009/03/14 14:45:56 dsl Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -79,7 +79,7 @@ __KERNEL_RCSID(0, "$NetBSD: ms.c,v 1.21 2009/01/17 05:23:28 tsutsui Exp $"); #define NMOUSE 1 #endif -typedef void (*FPV) __P((void *)); +typedef void (*FPV)(void *); static struct ms_softc ms_softc[NMOUSE]; @@ -95,7 +95,7 @@ const struct cdevsw ms_cdevsw = { nostop, notty, mspoll, nommap, mskqfilter, }; -static void ms_3b_delay __P((struct ms_softc *)); +static void ms_3b_delay(struct ms_softc *); int mouseattach(cnt) |
