Date: Wed, 3 Jun 2015 15:18:32 +0000 (UTC) From: Luiz Otavio O Souza <loos@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r283949 - head/sys/dev/dwc Message-ID: <201506031518.t53FIWXT006071@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: loos Date: Wed Jun 3 15:18:32 2015 New Revision: 283949 URL: https://svnweb.freebsd.org/changeset/base/283949 Log: Fix wrong variable name in the previous commit. Pointy hat to: loos Reported by: araujo Modified: head/sys/dev/dwc/if_dwc.c Modified: head/sys/dev/dwc/if_dwc.c ============================================================================== --- head/sys/dev/dwc/if_dwc.c Wed Jun 3 14:48:03 2015 (r283948) +++ head/sys/dev/dwc/if_dwc.c Wed Jun 3 15:18:32 2015 (r283949) @@ -745,7 +745,7 @@ dwc_txfinish_locked(struct dwc_softc *sc DWC_ASSERT_LOCKED(sc); - fp = sc->ifp; + ifp = sc->ifp; while (sc->tx_idx_tail != sc->tx_idx_head) { desc = &sc->txdesc_ring[sc->tx_idx_tail]; if ((desc->tdes0 & DDESC_TDES0_OWN) != 0)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506031518.t53FIWXT006071>