From owner-svn-src-all@FreeBSD.ORG Tue Feb 19 06:42:13 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F114233F; Tue, 19 Feb 2013 06:42:12 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id D9C46F4B; Tue, 19 Feb 2013 06:42:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1J6gCml093398; Tue, 19 Feb 2013 06:42:12 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1J6gC1m093397; Tue, 19 Feb 2013 06:42:12 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201302190642.r1J6gC1m093397@svn.freebsd.org> From: Adrian Chadd Date: Tue, 19 Feb 2013 06:42:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246979 - head/tools/tools/ath/athalq X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 06:42:13 -0000 Author: adrian Date: Tue Feb 19 06:42:12 2013 New Revision: 246979 URL: http://svnweb.freebsd.org/changeset/base/246979 Log: Print out the RTS/CTS rate in the TX descriptor. Modified: head/tools/tools/ath/athalq/ar5416_ds.c Modified: head/tools/tools/ath/athalq/ar5416_ds.c ============================================================================== --- head/tools/tools/ath/athalq/ar5416_ds.c Tue Feb 19 03:23:13 2013 (r246978) +++ head/tools/tools/ath/athalq/ar5416_ds.c Tue Feb 19 06:42:12 2013 (r246979) @@ -227,6 +227,8 @@ ar5416_decode_txdesc(struct if_ath_alq_p MF(txc.ds_ctl7, AR_2040_3), MF(txc.ds_ctl7, AR_STBC3)); + printf(" RTSCtsRate=0x%02x\n", MS(txc.ds_ctl7, AR_RTSCTSRate)); + /* ds_ctl8 */ printf(" try 0: ant=0x%08x\n", txc.ds_ctl8 & AR_AntCtl0);