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/if_mc.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/if_mc.c')
| -rw-r--r-- | sys/arch/macppc/dev/if_mc.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/macppc/dev/if_mc.c b/sys/arch/macppc/dev/if_mc.c index 4a7fde6c9b3..09e6c2f64ab 100644 --- a/sys/arch/macppc/dev/if_mc.c +++ b/sys/arch/macppc/dev/if_mc.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_mc.c,v 1.14 2008/10/05 05:01:08 macallan Exp $ */ +/* $NetBSD: if_mc.c,v 1.15 2009/03/14 14:46:01 dsl Exp $ */ /*- * Copyright (c) 1997 David Huang <khym@bga.com> @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_mc.c,v 1.14 2008/10/05 05:01:08 macallan Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_mc.c,v 1.15 2009/03/14 14:46:01 dsl Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -61,17 +61,17 @@ __KERNEL_RCSID(0, "$NetBSD: if_mc.c,v 1.14 2008/10/05 05:01:08 macallan Exp $"); #define MC_BUFSIZE 0x800 -hide int mc_match __P((struct device *, struct cfdata *, void *)); -hide void mc_attach __P((struct device *, struct device *, void *)); -hide void mc_init __P((struct mc_softc *sc)); -hide void mc_putpacket __P((struct mc_softc *sc, u_int len)); -hide int mc_dmaintr __P((void *arg)); -hide void mc_reset_rxdma __P((struct mc_softc *sc)); -hide void mc_reset_txdma __P((struct mc_softc *sc)); -hide void mc_select_utp __P((struct mc_softc *sc)); -hide void mc_select_aui __P((struct mc_softc *sc)); -hide int mc_mediachange __P((struct mc_softc *sc)); -hide void mc_mediastatus __P((struct mc_softc *sc, struct ifmediareq *)); +hide int mc_match(struct device *, struct cfdata *, void *); +hide void mc_attach(struct device *, struct device *, void *); +hide void mc_init(struct mc_softc *sc); +hide void mc_putpacket(struct mc_softc *sc, u_int len); +hide int mc_dmaintr(void *arg); +hide void mc_reset_rxdma(struct mc_softc *sc); +hide void mc_reset_txdma(struct mc_softc *sc); +hide void mc_select_utp(struct mc_softc *sc); +hide void mc_select_aui(struct mc_softc *sc); +hide int mc_mediachange(struct mc_softc *sc); +hide void mc_mediastatus(struct mc_softc *sc, struct ifmediareq *); int mc_supmedia[] = { IFM_ETHER | IFM_10_T, |
