From fa5ff59a784cc1c78d654150e0a89c93a42a24c6 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Sat, 10 May 2014 05:56:10 +0000 Subject: [PATCH] Fix the required calibration flags for the Centrino 1000 NIC. --- sys/dev/iwn/if_iwn_chip_cfg.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sys/dev/iwn/if_iwn_chip_cfg.h b/sys/dev/iwn/if_iwn_chip_cfg.h index 8d518bb2c09..67eba898a19 100644 --- a/sys/dev/iwn/if_iwn_chip_cfg.h +++ b/sys/dev/iwn/if_iwn_chip_cfg.h @@ -219,14 +219,16 @@ static const struct iwn_base_params iwn1000_base_params = { .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 = {