svn commit: r277105 - head/sys/dev/mii

Gleb Smirnoff glebius at FreeBSD.org
Tue Jan 13 06:22:56 UTC 2015


Author: glebius
Date: Tue Jan 13 06:22:55 2015
New Revision: 277105
URL: https://svnweb.freebsd.org/changeset/base/277105

Log:
  - Remove unused variable.
  - Wrap long line.

Modified:
  head/sys/dev/mii/e1000phy.c

Modified: head/sys/dev/mii/e1000phy.c
==============================================================================
--- head/sys/dev/mii/e1000phy.c	Tue Jan 13 06:22:24 2015	(r277104)
+++ head/sys/dev/mii/e1000phy.c	Tue Jan 13 06:22:55 2015	(r277105)
@@ -132,14 +132,13 @@ static int
 e1000phy_attach(device_t dev)
 {
 	struct mii_softc *sc;
-	if_t ifp;
 
 	sc = device_get_softc(dev);
 
 	mii_phy_dev_attach(dev, MIIF_NOMANPAUSE, &e1000phy_funcs, 0);
 
-	ifp = sc->mii_pdata->mii_ifp;
-	if (mii_dev_mac_match(dev, "msk") && (sc->mii_flags & MIIF_MACPRIV0) != 0)
+	if (mii_dev_mac_match(dev, "msk") &&
+	    (sc->mii_flags & MIIF_MACPRIV0) != 0)
 		sc->mii_flags |= MIIF_PHYPRIV0;
 
 	switch (sc->mii_mpd_model) {


More information about the svn-src-all mailing list