]> git.karo-electronics.de Git - linux-beck.git/commitdiff
iwlagn: more comments for bt channel inhibition
authorWey-Yi Guy <wey-yi.w.guy@intel.com>
Fri, 26 Aug 2011 06:10:57 +0000 (23:10 -0700)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 29 Aug 2011 19:25:33 +0000 (15:25 -0400)
Add comments for better description

Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/iwlwifi/iwl-agn-lib.c
drivers/net/wireless/iwlwifi/iwl-agn.c
drivers/net/wireless/iwlwifi/iwl-shared.h

index 6cfd236209738fd7b6885efd3d65a9a9edcba6e0..57839cab92ae3c729f3e3e5f69e15870ad85903b 100644 (file)
@@ -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 */
index be2ba4ddb92c0910d99e4a4917330d50027621f2..a79ee7a451d14bc120b17138e286f5801c6568ef 100644 (file)
@@ -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])");
index ec71ec7e1fc466d50993ef2e8751c80672d59ee2..6c20d03a2b72fa9e447bfffe1e7045387e6adb96 100644 (file)
@@ -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 */
 };