summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-02-05 22:30:53 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-02-05 22:30:53 +0000
commit032e3e55c9462a20c0f9af0c4ba6374225707f3c (patch)
tree13327b05537cf925fce8163cd6b7c68fb2f76955 /sys
parent07327fa3636b7451ac44f7675de60f241c008ed8 (diff)
better
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/mii/amphy.c4
-rw-r--r--sys/dev/mii/brgphy.c4
-rw-r--r--sys/dev/mii/eephy.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/mii/amphy.c b/sys/dev/mii/amphy.c
index ef573635e32..c6cbd7588fc 100644
--- a/sys/dev/mii/amphy.c
+++ b/sys/dev/mii/amphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: amphy.c,v 1.11 2005/02/05 19:11:34 brad Exp $ */
+/* $OpenBSD: amphy.c,v 1.12 2005/02/05 22:30:52 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -95,7 +95,7 @@ amphymatch(struct device *parent, void *match, void *aux)
{
struct mii_attach_args *ma = aux;
- if(mii_phy_match(ma, amphys) != NULL)
+ if (mii_phy_match(ma, amphys) != NULL)
return(10);
return(0);
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c
index f383548c5e3..7c36caee026 100644
--- a/sys/dev/mii/brgphy.c
+++ b/sys/dev/mii/brgphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: brgphy.c,v 1.21 2005/02/05 19:11:34 brad Exp $ */
+/* $OpenBSD: brgphy.c,v 1.22 2005/02/05 22:30:52 brad Exp $ */
/*
* Copyright (c) 2000
@@ -118,7 +118,7 @@ brgphy_probe(struct device *parent, void *match, void *aux)
{
struct mii_attach_args *ma = aux;
- if(mii_phy_match(ma, brgphys) != NULL)
+ if (mii_phy_match(ma, brgphys) != NULL)
return(10);
return(0);
diff --git a/sys/dev/mii/eephy.c b/sys/dev/mii/eephy.c
index f2f936979ef..46388ea2c74 100644
--- a/sys/dev/mii/eephy.c
+++ b/sys/dev/mii/eephy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: eephy.c,v 1.15 2005/02/05 19:11:34 brad Exp $ */
+/* $OpenBSD: eephy.c,v 1.16 2005/02/05 22:30:52 brad Exp $ */
/*
* Principal Author: Parag Patel
* Copyright (c) 2001
@@ -107,7 +107,7 @@ eephymatch(struct device *parent, void *match, void *aux)
{
struct mii_attach_args *ma = aux;
- if(mii_phy_match(ma, eephys) != NULL)
+ if (mii_phy_match(ma, eephys) != NULL)
return (10);
return(0);