svn commit: r283949 - head/sys/dev/dwc

Luiz Otavio O Souza loos at FreeBSD.org
Wed Jun 3 15:18:33 UTC 2015


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)


More information about the svn-src-all mailing list