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/macppc/dev/abtn.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/macppc/dev/abtn.c')
| -rw-r--r-- | sys/arch/macppc/dev/abtn.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/macppc/dev/abtn.c b/sys/arch/macppc/dev/abtn.c index 60a1b22bf25..3f35f84bef7 100644 --- a/sys/arch/macppc/dev/abtn.c +++ b/sys/arch/macppc/dev/abtn.c @@ -1,4 +1,4 @@ -/* $NetBSD: abtn.c,v 1.14 2008/06/13 11:54:31 cegger Exp $ */ +/* $NetBSD: abtn.c,v 1.15 2009/03/14 14:46:01 dsl Exp $ */ /*- * Copyright (C) 1999 Tsubai Masanari. All rights reserved. @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: abtn.c,v 1.14 2008/06/13 11:54:31 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: abtn.c,v 1.15 2009/03/14 14:46:01 dsl Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -61,9 +61,9 @@ struct abtn_softc { int volume; /* speaker volume (not yet) */ }; -static int abtn_match __P((struct device *, struct cfdata *, void *)); -static void abtn_attach __P((struct device *, struct device *, void *)); -static void abtn_adbcomplete __P((uint8_t *, uint8_t *, int)); +static int abtn_match(struct device *, struct cfdata *, void *); +static void abtn_attach(struct device *, struct device *, void *); +static void abtn_adbcomplete(uint8_t *, uint8_t *, int); CFATTACH_DECL(abtn, sizeof(struct abtn_softc), abtn_match, abtn_attach, NULL, NULL); |
