svn commit: r306388 - head/sys/arm/ti/cpsw

Luiz Otavio O Souza loos at FreeBSD.org
Wed Sep 28 04:22:07 UTC 2016


Author: loos
Date: Wed Sep 28 04:22:06 2016
New Revision: 306388
URL: https://svnweb.freebsd.org/changeset/base/306388

Log:
  Fix a typo.
  
  Pointy hat to:	loos

Modified:
  head/sys/arm/ti/cpsw/if_cpsw.c

Modified: head/sys/arm/ti/cpsw/if_cpsw.c
==============================================================================
--- head/sys/arm/ti/cpsw/if_cpsw.c	Wed Sep 28 04:08:20 2016	(r306387)
+++ head/sys/arm/ti/cpsw/if_cpsw.c	Wed Sep 28 04:22:06 2016	(r306388)
@@ -1941,7 +1941,7 @@ cpsw_tx_dequeue(struct cpsw_softc *sc)
 
 		/* TearDown complete is only marked on the SOP for the packet. */
 		if ((flags & (CPDMA_BD_SOP | CPDMA_BD_TDOWNCMPLT)) ==
-		    (CPDMA_BD_EOP | CPDMA_BD_TDOWNCMPLT)) {
+		    (CPDMA_BD_SOP | CPDMA_BD_TDOWNCMPLT)) {
 			CPSW_DEBUGF(sc, ("TX teardown in progress"));
 			cpsw_write_cp(sc, &sc->tx, 0xfffffffc);
 			// TODO: Increment a count of dropped TX packets


More information about the svn-src-head mailing list