aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mii/acphy.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-10-14 22:31:52 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-10-14 22:31:52 +0000
commit9c1c2e99243d6d70c79925621e17e2b7babfc8c3 (patch)
tree7af13e44af93cccd796d1cc59405dfdea469fb35 /sys/dev/mii/acphy.c
parent413f5a8addcfdd9290f54fcf21bfad1e6125324f (diff)
Notes
Diffstat (limited to 'sys/dev/mii/acphy.c')
-rw-r--r--sys/dev/mii/acphy.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/mii/acphy.c b/sys/dev/mii/acphy.c
index 5d6ba64cd251..731209aa1240 100644
--- a/sys/dev/mii/acphy.c
+++ b/sys/dev/mii/acphy.c
@@ -92,8 +92,8 @@ static const char rcsid[] =
"$FreeBSD$";
#endif
-static int acphy_probe (device_t);
-static int acphy_attach (device_t);
+static int acphy_probe(device_t);
+static int acphy_attach(device_t);
static device_method_t acphy_methods[] = {
/* device interface */
@@ -118,7 +118,8 @@ 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)
+static int
+acphy_probe(dev)
device_t dev;
{
struct mii_attach_args *ma;
@@ -134,7 +135,8 @@ static int acphy_probe(dev)
return (0);
}
-static int acphy_attach(dev)
+static int
+acphy_attach(dev)
device_t dev;
{
struct mii_softc *sc;