diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
| commit | e51a25f8505c7f9c6684c928bb59b0bda2fc039b (patch) | |
| tree | 13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/mii/acphy.c | |
| parent | c605e9e62f94150fea168cf43328076ea7789885 (diff) | |
Notes
Diffstat (limited to 'sys/dev/mii/acphy.c')
| -rw-r--r-- | sys/dev/mii/acphy.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/mii/acphy.c b/sys/dev/mii/acphy.c index 0008ef0b6b8d..e163db71364d 100644 --- a/sys/dev/mii/acphy.c +++ b/sys/dev/mii/acphy.c @@ -92,9 +92,9 @@ static const char rcsid[] = "$FreeBSD$"; #endif -static int acphy_probe __P((device_t)); -static int acphy_attach __P((device_t)); -static int acphy_detach __P((device_t)); +static int acphy_probe (device_t); +static int acphy_attach (device_t); +static int acphy_detach (device_t); static device_method_t acphy_methods[] = { /* device interface */ @@ -115,9 +115,9 @@ static driver_t acphy_driver = { DRIVER_MODULE(acphy, miibus, acphy_driver, acphy_devclass, 0, 0); -static int acphy_service __P((struct mii_softc *, struct mii_data *, int)); -static void acphy_reset __P((struct mii_softc *)); -static void acphy_status __P((struct mii_softc *)); +static int acphy_service(struct mii_softc *, struct mii_data *, int); +static void acphy_reset(struct mii_softc *); +static void acphy_status(struct mii_softc *); static int acphy_probe(dev) device_t dev; |
