diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-02-19 06:00:05 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-02-19 06:00:05 +0000 |
commit | fb9151118d7ed20c34f0cb3c634f6a52c89525f5 (patch) | |
tree | f901e8dcd9871890f1f466e4ab8c9c6bc62f4a18 /sys/dev/mii/nsphyter.c | |
parent | 6f2eea8695550458d1adeafbb36b135d7c649792 (diff) |
use mii_phy_match()
Diffstat (limited to 'sys/dev/mii/nsphyter.c')
-rw-r--r-- | sys/dev/mii/nsphyter.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/mii/nsphyter.c b/sys/dev/mii/nsphyter.c index 0eef321db5f..d87ec91ea39 100644 --- a/sys/dev/mii/nsphyter.c +++ b/sys/dev/mii/nsphyter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nsphyter.c,v 1.10 2005/02/05 22:20:42 brad Exp $ */ +/* $OpenBSD: nsphyter.c,v 1.11 2005/02/19 06:00:04 brad Exp $ */ /* $NetBSD: nsphyter.c,v 1.5 2000/02/02 23:34:57 thorpej Exp $ */ /*- @@ -108,10 +108,10 @@ const struct mii_phy_funcs nsphyter_funcs = { }; static const struct mii_phydesc nsphyterphys[] = { - { MII_OUI_NATSEMI, MII_MODEL_NATSEMI_DP83843, - MII_STR_NATSEMI_DP83843 }, - { MII_OUI_NATSEMI, MII_MODEL_NATSEMI_DP83815, + { MII_OUI_NATSEMI, MII_MODEL_NATSEMI_DP83815, MII_STR_NATSEMI_DP83815 }, + { MII_OUI_NATSEMI, MII_MODEL_NATSEMI_DP83843, + MII_STR_NATSEMI_DP83843 }, { 0, 0, NULL }, |