iwlwifi: mvm: BT Coex - fix copy paste issue
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Tue, 29 Oct 2013 20:50:49 +0000 (22:50 +0200)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Wed, 30 Oct 2013 17:20:48 +0000 (19:20 +0200)
Putting the context id of the primary phy context in
the placeholder of the secondary is obviously a bad
idea.
Spotted by smatch.

Fixes: dac94da8dba3 ("iwlwifi: mvm: new BT Coex API")
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/iwlwifi/mvm/bt-coex.c

index 7444b2ac5b0aecd7486dafc3d689d5a7ca4122b8..5d066cbc5ac7eda17914e85c2510c53fe4a5be2a 100644 (file)
@@ -755,7 +755,7 @@ static void iwl_mvm_bt_coex_notif_handle(struct iwl_mvm *mvm)
 
                cmd.bt_secondary_ci =
                        iwl_ci_mask[chan->def.chan->hw_value][ci_bw_idx];
-               cmd.secondary_ch_phy_id = *((u16 *)data.primary->drv_priv);
+               cmd.secondary_ch_phy_id = *((u16 *)data.secondary->drv_priv);
        }
 
        rcu_read_unlock();