summaryrefslogtreecommitdiff
path: root/sys/dev/mii/icsphy.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2004-09-27 18:25:49 +0000
committerBrad Smith <brad@cvs.openbsd.org>2004-09-27 18:25:49 +0000
commitaf48c30b9ae79597b2b945d233acc77c86902eca (patch)
treeb1003c6139d407b3e10edd73f21a06594146b017 /sys/dev/mii/icsphy.c
parentda405d21b29d592527efc4bfa8abd1ef2bcaa5e1 (diff)
ANSI protos and some minor cleanup
ok henning@
Diffstat (limited to 'sys/dev/mii/icsphy.c')
-rw-r--r--sys/dev/mii/icsphy.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/dev/mii/icsphy.c b/sys/dev/mii/icsphy.c
index 9e55557cc74..868c4a0e3e5 100644
--- a/sys/dev/mii/icsphy.c
+++ b/sys/dev/mii/icsphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: icsphy.c,v 1.13 2004/09/26 00:59:58 brad Exp $ */
+/* $OpenBSD: icsphy.c,v 1.14 2004/09/27 18:25:48 brad Exp $ */
/* $NetBSD: icsphy.c,v 1.17 2000/02/02 23:34:56 thorpej Exp $ */
/*-
@@ -109,10 +109,7 @@ const struct mii_phy_funcs icsphy_funcs = {
};
int
-icsphymatch(parent, match, aux)
- struct device *parent;
- void *match;
- void *aux;
+icsphymatch(struct device *parent, void *match, void *aux)
{
struct mii_attach_args *ma = aux;
@@ -132,9 +129,7 @@ icsphymatch(parent, match, aux)
}
void
-icsphyattach(parent, self, aux)
- struct device *parent, *self;
- void *aux;
+icsphyattach(struct device *parent, struct device *self, void *aux)
{
struct mii_softc *sc = (struct mii_softc *)self;
struct mii_attach_args *ma = aux;