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/txphy.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/txphy.c')
-rw-r--r-- | sys/dev/mii/txphy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/mii/txphy.c b/sys/dev/mii/txphy.c index 78d602701a0..62ebcface72 100644 --- a/sys/dev/mii/txphy.c +++ b/sys/dev/mii/txphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: txphy.c,v 1.3 2000/10/18 15:07:00 chris Exp $ */ +/* $OpenBSD: txphy.c,v 1.4 2002/03/14 01:26:58 millert Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -50,8 +50,8 @@ #include <dev/mii/miivar.h> #include <dev/mii/miidevs.h> -int txphymatch __P((struct device *, void *, void *)); -void txphyattach __P((struct device *, struct device *, void *)); +int txphymatch(struct device *, void *, void *); +void txphyattach(struct device *, struct device *, void *); struct cfattach txphy_ca = { sizeof(struct mii_softc), txphymatch, txphyattach, mii_phy_detach, @@ -62,7 +62,7 @@ struct cfdriver txphy_cd = { NULL, "txphy", DV_DULL }; -int txphy_service __P((struct mii_softc *, struct mii_data *, int)); +int txphy_service(struct mii_softc *, struct mii_data *, int); int txphymatch(parent, match, aux) |