diff options
author | 2005-02-05 22:30:52 +0000 | |
---|---|---|
committer | 2005-02-05 22:30:52 +0000 | |
commit | 0df3c7cfbd3ecb4705c11c3c3317f2561dfab882 (patch) | |
tree | 60beaf2d05a1a4802b633caa66e3d9ad2b993852 | |
parent | use mii_phy_match() (diff) | |
download | wireguard-openbsd-0df3c7cfbd3ecb4705c11c3c3317f2561dfab882.tar.xz wireguard-openbsd-0df3c7cfbd3ecb4705c11c3c3317f2561dfab882.zip |
better
-rw-r--r-- | sys/dev/mii/amphy.c | 4 | ||||
-rw-r--r-- | sys/dev/mii/brgphy.c | 4 | ||||
-rw-r--r-- | sys/dev/mii/eephy.c | 4 |
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); |