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/amphy.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/amphy.c')
-rw-r--r-- | sys/dev/mii/amphy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mii/amphy.c b/sys/dev/mii/amphy.c index 110bb0599b8..96ba9d73055 100644 --- a/sys/dev/mii/amphy.c +++ b/sys/dev/mii/amphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: amphy.c,v 1.2 2000/11/20 16:22:15 jason Exp $ */ +/* $OpenBSD: amphy.c,v 1.3 2002/03/14 01:26:57 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -56,8 +56,8 @@ #include <dev/mii/amphyreg.h> -int amphymatch __P((struct device *, void *, void *)); -void amphyattach __P((struct device *, struct device *, void *)); +int amphymatch(struct device *, void *, void *); +void amphyattach(struct device *, struct device *, void *); struct cfattach amphy_ca = { sizeof(struct mii_softc), amphymatch, amphyattach, mii_phy_detach, @@ -68,8 +68,8 @@ struct cfdriver amphy_cd = { NULL, "amphy", DV_DULL }; -int amphy_service __P((struct mii_softc *, struct mii_data *, int)); -void amphy_status __P((struct mii_softc *)); +int amphy_service(struct mii_softc *, struct mii_data *, int); +void amphy_status(struct mii_softc *); int amphymatch(parent, match, aux) |