aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dwc
diff options
context:
space:
mode:
authorLuiz Otavio O Souza <loos@FreeBSD.org>2015-06-03 15:18:32 +0000
committerLuiz Otavio O Souza <loos@FreeBSD.org>2015-06-03 15:18:32 +0000
commitecb3497f56424bbdc0aa9eafd4c5ab32b090dc00 (patch)
treec88dc871d9a7ed31dade32dadb4c5c3e4e0ed1e6 /sys/dev/dwc
parent9500101c2f7dab4553943ba8d74fbe41fb5c8322 (diff)
downloadsrc-ecb3497f56424bbdc0aa9eafd4c5ab32b090dc00.tar.gz
src-ecb3497f56424bbdc0aa9eafd4c5ab32b090dc00.zip
Fix wrong variable name in the previous commit.
Pointy hat to: loos Reported by: araujo
Notes
Notes: svn path=/head/; revision=283949
Diffstat (limited to 'sys/dev/dwc')
-rw-r--r--sys/dev/dwc/if_dwc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dwc/if_dwc.c b/sys/dev/dwc/if_dwc.c
index f2603833fc13..7ca16ace8e09 100644
--- a/sys/dev/dwc/if_dwc.c
+++ b/sys/dev/dwc/if_dwc.c
@@ -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)