Commit fee84f0d authored by Wey-Yi Guy's avatar Wey-Yi Guy Committed by John W. Linville

iwlagn: more comments for bt channel inhibition

Add comments for better description
Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 6a9ae0dc
......@@ -610,7 +610,7 @@ struct iwl_mod_params iwlagn_mod_params = {
.bt_coex_active = true,
.no_sleep_autoadjust = true,
.power_level = IWL_POWER_INDEX_1,
.bt_ch_announce = 1,
.bt_ch_announce = true,
.wanted_ucode_alternative = 1,
.auto_agg = true,
/* the rest are 0 by default */
......
......@@ -3542,7 +3542,7 @@ MODULE_PARM_DESC(antenna_coupling,
module_param_named(bt_ch_inhibition, iwlagn_mod_params.bt_ch_announce,
bool, S_IRUGO);
MODULE_PARM_DESC(bt_ch_inhibition,
"Disable BT channel inhibition (default: enable)");
"Enable BT channel inhibition (default: enable)");
module_param_named(plcp_check, iwlagn_mod_params.plcp_check, bool, S_IRUGO);
MODULE_PARM_DESC(plcp_check, "Check plcp health (default: 1 [enabled])");
......
......@@ -91,7 +91,7 @@ struct iwl_mod_params {
int power_level; /* def: 1 = power level */
u32 debug_level; /* levels are IWL_DL_* */
int ant_coupling;
bool bt_ch_announce;
bool bt_ch_announce; /* def: enable = BT channel inhibition */
int wanted_ucode_alternative;
bool auto_agg; /* def: true = enable agg. without check */
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment