diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-02-12 05:33:09 -0500 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-03-02 01:20:26 -0500 |
commit | 0522588d2fdc7813338d2f02aec6e46dbc20431f (patch) | |
tree | 2a7b2ea7faff9e77cf8ff10b01c3775380fabfa5 /drivers/net/wireless/iwlwifi/mvm/coex.c | |
parent | e0ede17789b50537439931f974deeed9cb24026b (diff) |
iwlwifi: add new TLV capability flag for BT PLCR
Packet Level Co-Running is a BT Coex feature which is
supported on certain devices only, hence the need for
a TLV flag for it.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/coex.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/coex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/coex.c b/drivers/net/wireless/iwlwifi/mvm/coex.c index 1ec4d55155f7..ce99572a982d 100644 --- a/drivers/net/wireless/iwlwifi/mvm/coex.c +++ b/drivers/net/wireless/iwlwifi/mvm/coex.c | |||
@@ -611,7 +611,7 @@ int iwl_send_bt_init_conf(struct iwl_mvm *mvm) | |||
611 | bt_cmd->enabled_modules |= | 611 | bt_cmd->enabled_modules |= |
612 | cpu_to_le32(BT_COEX_SYNC2SCO_ENABLED); | 612 | cpu_to_le32(BT_COEX_SYNC2SCO_ENABLED); |
613 | 613 | ||
614 | if (IWL_MVM_BT_COEX_CORUNNING) | 614 | if (iwl_mvm_bt_is_plcr_supported(mvm)) |
615 | bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_CORUN_ENABLED); | 615 | bt_cmd->enabled_modules |= cpu_to_le32(BT_COEX_CORUN_ENABLED); |
616 | 616 | ||
617 | if (IWL_MVM_BT_COEX_MPLUT) { | 617 | if (IWL_MVM_BT_COEX_MPLUT) { |
@@ -1234,7 +1234,7 @@ int iwl_mvm_rx_ant_coupling_notif(struct iwl_mvm *mvm, | |||
1234 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) | 1234 | if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) |
1235 | return iwl_mvm_rx_ant_coupling_notif_old(mvm, rxb, dev_cmd); | 1235 | return iwl_mvm_rx_ant_coupling_notif_old(mvm, rxb, dev_cmd); |
1236 | 1236 | ||
1237 | if (!IWL_MVM_BT_COEX_CORUNNING) | 1237 | if (!iwl_mvm_bt_is_plcr_supported(mvm)) |
1238 | return 0; | 1238 | return 0; |
1239 | 1239 | ||
1240 | lockdep_assert_held(&mvm->mutex); | 1240 | lockdep_assert_held(&mvm->mutex); |