diff options
author | alfred <alfred@FreeBSD.org> | 2002-10-14 22:31:52 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-10-14 22:31:52 +0000 |
commit | 9693ff7295bc7cc16b9fbff25a11288b807d08ee (patch) | |
tree | 7af13e44af93cccd796d1cc59405dfdea469fb35 /sys/dev/mii/tdkphy.c | |
parent | 29308350edf8b43517d84c47aa1b91d5031b6e5d (diff) | |
download | FreeBSD-src-9693ff7295bc7cc16b9fbff25a11288b807d08ee.zip FreeBSD-src-9693ff7295bc7cc16b9fbff25a11288b807d08ee.tar.gz |
Put function return types on a line by themselves.
Cleanup my earlier de-__P sweep and remove whitespace between function
names and paramters.
Diffstat (limited to 'sys/dev/mii/tdkphy.c')
-rw-r--r-- | sys/dev/mii/tdkphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/tdkphy.c b/sys/dev/mii/tdkphy.c index 833c499..f7af539 100644 --- a/sys/dev/mii/tdkphy.c +++ b/sys/dev/mii/tdkphy.c @@ -69,8 +69,8 @@ static const char rcsid[] = "$Id: tdkphy.c,v 1.3 2000/10/14 06:20:56 jon Exp $"; #endif -static int tdkphy_probe (device_t); -static int tdkphy_attach (device_t); +static int tdkphy_probe(device_t); +static int tdkphy_attach(device_t); static device_method_t tdkphy_methods[] = { /* device interface */ |