Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Apr 2013 08:06:45 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r249642 - head/sys/dev/ath
Message-ID:  <201304190806.r3J86jOa013667@svn.freebsd.org>

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



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