diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/mii/nsgphy.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/nsgphy.c')
-rw-r--r-- | sys/dev/mii/nsgphy.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/mii/nsgphy.c b/sys/dev/mii/nsgphy.c index a2a599fe5f6..2bd68625065 100644 --- a/sys/dev/mii/nsgphy.c +++ b/sys/dev/mii/nsgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nsgphy.c,v 1.6 2001/10/05 18:29:15 nate Exp $ */ +/* $OpenBSD: nsgphy.c,v 1.7 2002/03/14 01:26:58 millert Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 2001 @@ -64,8 +64,8 @@ #include <dev/mii/nsgphyreg.h> -int nsgphymatch __P((struct device*, void *, void *)); -void nsgphyattach __P((struct device *, struct device *, void *)); +int nsgphymatch(struct device*, void *, void *); +void nsgphyattach(struct device *, struct device *, void *); struct cfattach nsgphy_ca = { sizeof(struct mii_softc), nsgphymatch, nsgphyattach, mii_phy_detach, @@ -76,11 +76,11 @@ struct cfdriver nsgphy_cd = { NULL, "nsgphy", DV_DULL }; -int nsgphy_service __P((struct mii_softc *, struct mii_data *, int)); -void nsgphy_status __P((struct mii_softc *)); +int nsgphy_service(struct mii_softc *, struct mii_data *, int); +void nsgphy_status(struct mii_softc *); -static int nsgphy_mii_phy_auto __P((struct mii_softc *, int)); -extern void mii_phy_auto_timeout __P((void *)); +static int nsgphy_mii_phy_auto(struct mii_softc *, int); +extern void mii_phy_auto_timeout(void *); int |