svn commit: r250356 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Wed May 8 08:53:56 UTC 2013


Author: adrian
Date: Wed May  8 08:53:55 2013
New Revision: 250356
URL: http://svnweb.freebsd.org/changeset/base/250356

Log:
  This shouldn't have made it into this commit, sorry.

Modified:
  head/sys/dev/ath/if_ath_misc.h

Modified: head/sys/dev/ath/if_ath_misc.h
==============================================================================
--- head/sys/dev/ath/if_ath_misc.h	Wed May  8 07:30:33 2013	(r250355)
+++ head/sys/dev/ath/if_ath_misc.h	Wed May  8 08:53:55 2013	(r250356)
@@ -131,16 +131,10 @@ extern	void ath_start_task(void *arg, in
 static inline void
 ath_tx_kick(struct ath_softc *sc)
 {
-	struct ieee80211com *ic = sc->sc_ifp->if_l2com;
 
-	IEEE80211_TX_UNLOCK_ASSERT(ic);
-	ATH_TX_UNLOCK_ASSERT(sc);
-
-	IEEE80211_TX_LOCK(ic);
 	ATH_TX_LOCK(sc);
 	ath_start(sc->sc_ifp);
 	ATH_TX_UNLOCK(sc);
-	IEEE80211_TX_UNLOCK(ic);
 }
 
 /*


More information about the svn-src-head mailing list