Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Nov 2010 17:07:33 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r215532 - stable/8/sys/dev/mii
Message-ID:  <201011191707.oAJH7XLL081800@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Fri Nov 19 17:07:32 2010
New Revision: 215532
URL: http://svn.freebsd.org/changeset/base/215532

Log:
  MFC: r215300
  
  Remove redundant cases and a style(9) bug.

Modified:
  stable/8/sys/dev/mii/xmphy.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/mii/xmphy.c
==============================================================================
--- stable/8/sys/dev/mii/xmphy.c	Fri Nov 19 17:04:57 2010	(r215531)
+++ stable/8/sys/dev/mii/xmphy.c	Fri Nov 19 17:07:32 2010	(r215532)
@@ -167,7 +167,7 @@ xmphy_service(struct mii_softc *sc, stru
 			if (PHY_READ(sc, XMPHY_MII_BMCR) & XMPHY_BMCR_AUTOEN)
 				return (0);
 #endif
-			(void) xmphy_mii_phy_auto(sc);
+			(void)xmphy_mii_phy_auto(sc);
 			break;
 		case IFM_1000_SX:
 			mii_phy_reset(sc);
@@ -179,9 +179,6 @@ xmphy_service(struct mii_softc *sc, stru
 				PHY_WRITE(sc, XMPHY_MII_BMCR, 0);
 			}
 			break;
-		case IFM_100_T4:
-		case IFM_100_TX:
-		case IFM_10_T:
 		default:
 			return (EINVAL);
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011191707.oAJH7XLL081800>