aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mii/qsphy.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/qsphy.c
parent413f5a8addcfdd9290f54fcf21bfad1e6125324f (diff)
downloadsrc-9c1c2e99243d6d70c79925621e17e2b7babfc8c3.tar.gz
src-9c1c2e99243d6d70c79925621e17e2b7babfc8c3.zip
Put function return types on a line by themselves.
Cleanup my earlier de-__P sweep and remove whitespace between function names and paramters.
Notes
Notes: svn path=/head/; revision=105135
Diffstat (limited to 'sys/dev/mii/qsphy.c')
-rw-r--r--sys/dev/mii/qsphy.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/mii/qsphy.c b/sys/dev/mii/qsphy.c
index c40161f2b729..f9bc897c5283 100644
--- a/sys/dev/mii/qsphy.c
+++ b/sys/dev/mii/qsphy.c
@@ -96,8 +96,8 @@ static const char rcsid[] =
"$FreeBSD$";
#endif
-static int qsphy_probe (device_t);
-static int qsphy_attach (device_t);
+static int qsphy_probe(device_t);
+static int qsphy_attach(device_t);
static device_method_t qsphy_methods[] = {
/* device interface */
@@ -122,7 +122,8 @@ static int qsphy_service(struct mii_softc *, struct mii_data *, int);
static void qsphy_reset(struct mii_softc *);
static void qsphy_status(struct mii_softc *);
-static int qsphy_probe(dev)
+static int
+qsphy_probe(dev)
device_t dev;
{
struct mii_attach_args *ma;
@@ -138,7 +139,8 @@ static int qsphy_probe(dev)
return (0);
}
-static int qsphy_attach(dev)
+static int
+qsphy_attach(dev)
device_t dev;
{
struct mii_softc *sc;