Remove unused variable mii.

This variable is initialized but not used.

Reviewed by:	yongari
This commit is contained in:
Kevin Lo 2011-11-23 05:34:01 +00:00
parent 317d14cf46
commit c2c400aca1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227871

View file

@ -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;