svn commit: r229785 - stable/7/sys/dev/vte

Kevin Lo kevlo at FreeBSD.org
Sat Jan 7 16:14:53 UTC 2012


Author: kevlo
Date: Sat Jan  7 16:14:53 2012
New Revision: 229785
URL: http://svn.freebsd.org/changeset/base/229785

Log:
  MFC r227871:
  Remove unused variable mii.
  This variable is initialized but not used.
  
  Reviewed by:	yongari

Modified:
  stable/7/sys/dev/vte/if_vte.c

Modified: stable/7/sys/dev/vte/if_vte.c
==============================================================================
--- stable/7/sys/dev/vte/if_vte.c	Sat Jan  7 16:13:56 2012	(r229784)
+++ stable/7/sys/dev/vte/if_vte.c	Sat Jan  7 16:14:53 2012	(r229785)
@@ -1621,14 +1621,12 @@ static void
 vte_init_locked(struct vte_softc *sc)
 {
 	struct ifnet *ifp;
-	struct mii_data *mii;
 	bus_addr_t paddr;
 	uint8_t *eaddr;
 
 	VTE_LOCK_ASSERT(sc);
 
 	ifp = sc->vte_ifp;
-	mii = device_get_softc(sc->vte_miibus);
 
 	if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
 		return;


More information about the svn-src-stable-7 mailing list