Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Aug 2016 01:13:34 +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: r303981 - head/tools/tools/ath/ath_ee_9300_print
Message-ID:  <201608120113.u7C1DYiM077739@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Fri Aug 12 01:13:34 2016
New Revision: 303981
URL: https://svnweb.freebsd.org/changeset/base/303981

Log:
  Print out some more fields.
  
  Tested:
  
  * AR9331 SoC (Carambola 2) - specifically looking for the tuning caps fields.

Modified:
  head/tools/tools/ath/ath_ee_9300_print/main.c

Modified: head/tools/tools/ath/ath_ee_9300_print/main.c
==============================================================================
--- head/tools/tools/ath/ath_ee_9300_print/main.c	Fri Aug 12 01:05:07 2016	(r303980)
+++ head/tools/tools/ath/ath_ee_9300_print/main.c	Fri Aug 12 01:13:34 2016	(r303981)
@@ -72,8 +72,10 @@ eeprom_9300_base_print(const uint16_t *b
 	    ee_base->device_cap,
 	    ee_base->device_type);
 
-	printf("| pwrTableOffset: %d dB, feature_enable: 0x%02x MiscConfig: 0x%02x |\n",
+	printf("| pwrTableOffset: %d dB, TuningCaps=0x%02x 0x%02x feature_enable: 0x%02x MiscConfig: 0x%02x |\n",
 	    ee_base->pwrTableOffset,
+	    ee_base->params_for_tuning_caps[0],
+	    ee_base->params_for_tuning_caps[1],
 	    ee_base->feature_enable,
 	    ee_base->misc_configuration);
 



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