svn commit: r335785 - head/sys/dev/iwn

Eitan Adler eadler at FreeBSD.org
Thu Jun 28 21:59:46 UTC 2018


Author: eadler
Date: Thu Jun 28 21:59:45 2018
New Revision: 335785
URL: https://svnweb.freebsd.org/changeset/base/335785

Log:
  iwn: Correct Centrino Advanced-N 6235 constants
  
  The iwn 6235 is a 2x2 device (see
  https://ark.intel.com/products/66890/Intel-Centrino-Advanced-N-6235-Dual-Band)
  
  Reviewed by:	adrian, kevans
  Obtained from:	Haiku

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	Thu Jun 28 21:40:31 2018	(r335784)
+++ head/sys/dev/iwn/if_iwn_chip_cfg.h	Thu Jun 28 21:59:45 2018	(r335785)
@@ -382,8 +382,7 @@ static const struct iwn_base_params iwn_6235_base_para
 	    | IWN_FLG_NEED_PHY_CALIB_TEMP_OFFSET ),
 	.support_hostap = false,
 	.no_multi_vaps = true,
-	/* XXX 1x2? This NIC is 2x2, right? */
-	.additional_gp_drv_bit = IWN_GP_DRIVER_6050_1X2,
+	.additional_gp_drv_bit = 0,
 	.bt_mode = IWN_BT_ADVANCED,
 	.plcp_err_threshold = IWN_PLCP_ERR_DEFAULT_THRESHOLD,
 };


More information about the svn-src-head mailing list