Date: Tue, 23 Jun 2015 06:59:47 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284724 - head/sys/dev/ti Message-ID: <201506230659.t5N6xlc8039809@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506230659.t5N6xlc8039809>