Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Apr 2013 07:56:23 +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: r249640 - head/sys/dev/ath
Message-ID:  <201304190756.r3J7uNXd010147@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Fri Apr 19 07:56:22 2013
New Revision: 249640
URL: http://svnweb.freebsd.org/changeset/base/249640

Log:
  Print out the 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 06:59:10 2013	(r249639)
+++ head/sys/dev/ath/if_ath.c	Fri Apr 19 07:56:22 2013	(r249640)
@@ -781,6 +781,11 @@ ath_attach(u_int16_t devid, struct ath_s
 		ath_hal_getrxchainmask(ah, &sc->sc_rxchainmask);
 		ath_hal_gettxchainmask(ah, &sc->sc_txchainmask);
 
+		device_printf(sc->sc_dev, "Chainmasks: TX=0x%x; RX=0x%x\n",
+		    __func__,
+		    sc->sc_txchainmask,
+		    sc->sc_rxchainmask);
+
 		ic->ic_txstream = txs;
 		ic->ic_rxstream = rxs;
 



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