Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 May 2014 05:56:10 +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: r265803 - head/sys/dev/iwn
Message-ID:  <201405100556.s4A5uA9U025278@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Sat May 10 05:56:10 2014
New Revision: 265803
URL: http://svnweb.freebsd.org/changeset/base/265803

Log:
  Fix the required calibration flags for the Centrino 1000 NIC.

Modified:
  head/sys/dev/iwn/if_iwn_chip_cfg.h

Modified: head/sys/dev/iwn/if_iwn_chip_cfg.h
==============================================================================
--- head/sys/dev/iwn/if_iwn_chip_cfg.h	Sat May 10 05:16:28 2014	(r265802)
+++ head/sys/dev/iwn/if_iwn_chip_cfg.h	Sat May 10 05:56:10 2014	(r265803)
@@ -219,14 +219,16 @@ static const struct iwn_base_params iwn1
 	.regulatory_bands = iwn5000_regulatory_bands,
 	.enhanced_TX_power = false,
 	.calib_need =
-	    ( IWN_FLG_NEED_PHY_CALIB_DC
-	    | IWN_FLG_NEED_PHY_CALIB_LO
+	    ( IWN_FLG_NEED_PHY_CALIB_LO
+	    | IWN_FLG_NEED_PHY_CALIB_TX_IQ_PERIODIC
 	    | IWN_FLG_NEED_PHY_CALIB_TX_IQ
-	    | IWN_FLG_NEED_PHY_CALIB_BASE_BAND ),
+	    | IWN_FLG_NEED_PHY_CALIB_BASE_BAND
+	    ),
 	.support_hostap = false,
 	.no_multi_vaps = true,
 	.additional_gp_drv_bit = IWN_GP_DRIVER_NONE,
-	.bt_mode = IWN_BT_NONE,
+	/* XXX 1000 - no BT */
+	.bt_mode = IWN_BT_SIMPLE,
 	.plcp_err_threshold = IWN_PLCP_ERR_EXT_LONG_THRESHOLD,
 };
 static const struct iwn_base_params iwn_6000_base_params = {



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