svn commit: r284724 - head/sys/dev/ti

Dimitry Andric dim at FreeBSD.org
Tue Jun 23 06:59:47 UTC 2015


Author: dim
Date: Tue Jun 23 06:59:46 2015
New Revision: 284724
URL: https://svnweb.freebsd.org/changeset/base/284724

Log:
  Fix r284722, by making it actually compile.
  
  Pointy hat to:	dim

Modified:
  head/sys/dev/ti/if_ti.c

Modified: head/sys/dev/ti/if_ti.c
==============================================================================
--- head/sys/dev/ti/if_ti.c	Tue Jun 23 06:50:03 2015	(r284723)
+++ head/sys/dev/ti/if_ti.c	Tue Jun 23 06:59:46 2015	(r284724)
@@ -3350,7 +3350,7 @@ ti_ifmedia_upd(struct ifnet *ifp)
 
 	sc = ifp->if_softc;
 	TI_LOCK(sc);
-	error = ti_ifmedia_upd_locked(ifp);
+	error = ti_ifmedia_upd_locked(sc);
 	TI_UNLOCK(sc);
 
 	return (error);


More information about the svn-src-all mailing list