diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2003-07-01 22:51:13 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2003-07-01 22:51:13 +0000 |
| commit | d8a4a08a242a0e020e01d8a26ac1a2d3be0edc7e (patch) | |
| tree | 1849cba6c1d08aefb5d6c5e0b8599b4eebba12ac /sys/dev | |
| parent | 5af1b6934b2346c83dc7317801bbc046c0814987 (diff) | |
- last commit (rev. 1.32) fixes icsphy_reset()'s problem. ICSphys don't
restart auto negotiation, so it kick.
- add comment in icsphy_reset()
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/mii/icsphy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/mii/icsphy.c b/sys/dev/mii/icsphy.c index 43fb196213c..358e7634d89 100644 --- a/sys/dev/mii/icsphy.c +++ b/sys/dev/mii/icsphy.c @@ -1,4 +1,4 @@ -/* $NetBSD: icsphy.c,v 1.32 2003/07/01 22:46:08 msaitoh Exp $ */ +/* $NetBSD: icsphy.c,v 1.33 2003/07/01 22:51:13 msaitoh Exp $ */ /*- * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc. @@ -72,7 +72,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: icsphy.c,v 1.32 2003/07/01 22:46:08 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: icsphy.c,v 1.33 2003/07/01 22:51:13 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -278,6 +278,7 @@ icsphy_reset(sc) { mii_phy_reset(sc); + /* set powerdown feature */ switch (sc->mii_mpd_model) { case MII_MODEL_ICS_1890: case MII_MODEL_ICS_1893: |
