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/dev/mca | |
| 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/dev/mca')
| -rw-r--r-- | sys/dev/mca/if_tra_mca.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mca/if_tra_mca.c b/sys/dev/mca/if_tra_mca.c index 16ae75794ef..fdd3dddf0a7 100644 --- a/sys/dev/mca/if_tra_mca.c +++ b/sys/dev/mca/if_tra_mca.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_tra_mca.c,v 1.10 2008/04/28 20:23:53 martin Exp $ */ +/* $NetBSD: if_tra_mca.c,v 1.11 2009/03/14 14:46:09 dsl Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_tra_mca.c,v 1.10 2008/04/28 20:23:53 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tra_mca.c,v 1.11 2009/03/14 14:46:09 dsl Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -56,8 +56,8 @@ __KERNEL_RCSID(0, "$NetBSD: if_tra_mca.c,v 1.10 2008/04/28 20:23:53 martin Exp $ #include <dev/mca/mcavar.h> #include <dev/mca/mcadevs.h> -int tiara_mca_match __P((struct device *, struct cfdata *, void *)); -void tiara_mca_attach __P((struct device *, struct device *, void *)); +int tiara_mca_match(struct device *, struct cfdata *, void *); +void tiara_mca_attach(struct device *, struct device *, void *); #define TIARA_NPORTS 0x20 /* 32 */ #define TIARA_PROM_ID 24 /* offset to mac addr stored in prom */ @@ -82,7 +82,7 @@ static const struct tiara_mca_product { { 0, NULL }, }; -static const struct tiara_mca_product *tiara_mca_lookup __P((u_int32_t)); +static const struct tiara_mca_product *tiara_mca_lookup(u_int32_t); static const struct tiara_mca_product * tiara_mca_lookup(id) |
