Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Sep 2016 04:22:06 +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: r306388 - head/sys/arm/ti/cpsw
Message-ID:  <201609280422.u8S4M6ps058772@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609280422.u8S4M6ps058772>