Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jan 2016 20:53:50 +0000 (UTC)
From:      Andriy Voskoboinyk <avos@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r294600 - head/tools/tools/ath/ath_ee_v4k_print
Message-ID:  <201601222053.u0MKroC1020574@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avos
Date: Fri Jan 22 20:53:50 2016
New Revision: 294600
URL: https://svnweb.freebsd.org/changeset/base/294600

Log:
  tools/tools/ath/ath_ee_v4k_print: reflect changes from r220589
  
  Fix printf() arguments + sort includes
  
  Approved by:	adrian (mentor)
  Differential Revision:	https://reviews.freebsd.org/D4045

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	Fri Jan 22 20:41:56 2016	(r294599)
+++ head/tools/tools/ath/ath_ee_v4k_print/v4k.c	Fri Jan 22 20:53:50 2016	(r294600)
@@ -26,12 +26,13 @@
  * $FreeBSD$
  */
 
+#include <sys/types.h>
+
+#include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <unistd.h>
 #include <string.h>
-#include <sys/types.h>
-#include <err.h>
+#include <unistd.h>
 
 typedef enum {
         AH_FALSE = 0,           /* NB: lots of code assumes false is zero */
@@ -128,12 +129,10 @@ eeprom_v4k_modal_print(uint16_t *buf)
 
 	printf("| Modal Version: %.2x |\n", mh->version);
 
-	printf("| futureModal: 0x%.2x 0x%.2x 0x%.2x 0x%.2x |\n",
-	    mh->futureModal[0],
-	    mh->futureModal[1],
-	    mh->futureModal[2],
-	    mh->futureModal[3]
-	);
+	printf("| tx_diversity: 0x%.2x |\n", mh->tx_diversity);
+	printf("| flc_pwr_thresh: 0x%.2x |\n", mh->flc_pwr_thresh);
+	printf("| bb_scale_smrt_antenna: 0x%.2x |\n", mh->bb_scale_smrt_antenna);
+	printf("| futureModal: 0x%.2x |\n", mh->futureModal[0]);
 
 	/* and now, spur channels */
 	for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) {



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