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

Adrian Chadd adrian at FreeBSD.org
Fri Apr 19 08:06:45 UTC 2013


Author: adrian
Date: Fri Apr 19 08:06:45 2013
New Revision: 249642
URL: http://svnweb.freebsd.org/changeset/base/249642

Log:
  Add a debug statement to log the currently chosen chainmask configuration.

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Fri Apr 19 08:01:34 2013	(r249641)
+++ head/sys/dev/ath/if_ath.c	Fri Apr 19 08:06:45 2013	(r249642)
@@ -1529,6 +1529,12 @@ ath_update_chainmasks(struct ath_softc *
 	} else {
 		sc->sc_cur_txchainmask = 1;
 	}
+
+	DPRINTF(sc, ATH_DEBUG_RESET,
+	    "%s: TX chainmask is now 0x%x, RX is now 0x%x\n",
+	    __func__,
+	    sc->sc_cur_txchainmask,
+	    sc->sc_cur_rxchainmask);
 }
 
 void


More information about the svn-src-all mailing list