From owner-svn-src-all@FreeBSD.ORG Mon May 9 10:39:16 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05B25106564A; Mon, 9 May 2011 10:39:16 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EA4CC8FC16; Mon, 9 May 2011 10:39:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p49AdFCP093146; Mon, 9 May 2011 10:39:15 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p49AdF52093144; Mon, 9 May 2011 10:39:15 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201105091039.p49AdF52093144@svn.freebsd.org> From: Adrian Chadd Date: Mon, 9 May 2011 10:39:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r221691 - head/tools/tools/ath/ath_ee_v4k_print X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 09 May 2011 10:39:16 -0000 Author: adrian Date: Mon May 9 10:39:15 2011 New Revision: 221691 URL: http://svn.freebsd.org/changeset/base/221691 Log: This is a full 32 bit field for kite. Modified: head/tools/tools/ath/ath_ee_v4k_print/v4k.c Modified: head/tools/tools/ath/ath_ee_v4k_print/v4k.c ============================================================================== --- head/tools/tools/ath/ath_ee_v4k_print/v4k.c Mon May 9 07:37:47 2011 (r221690) +++ head/tools/tools/ath/ath_ee_v4k_print/v4k.c Mon May 9 10:39:15 2011 (r221691) @@ -89,7 +89,7 @@ eeprom_v4k_modal_print(uint16_t *buf) MODAL_EEP4K_HEADER *mh = &eep->ee_base.modalHeader; int i; - printf("| antCtrlCommon: 0x%.4x |\n", mh->antCtrlCommon); + printf("| antCtrlCommon: 0x%.8x |\n", mh->antCtrlCommon); printf("| switchSettling: 0x%.2x |\n", mh->switchSettling); printf("| adcDesiredSize: %d |\n| pgaDesiredSize: %.2f dBm |\n", mh->adcDesiredSize, (float) mh->pgaDesiredSize / 2.0);