diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2017-05-29 14:01:06 +0300 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2017-06-29 13:26:25 +0300 |
commit | b3de3ef48aa3fe066150243f07d1cc4e6fac2c80 (patch) | |
tree | 014dea47efcdffca1b74329d2148448d92b31807 /drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c | |
parent | 3bfdee768c09bac3ee3e4b3a6d3b75cdc19e489c (diff) | |
download | linux-b3de3ef48aa3fe066150243f07d1cc4e6fac2c80.tar.gz linux-b3de3ef48aa3fe066150243f07d1cc4e6fac2c80.tar.bz2 linux-b3de3ef48aa3fe066150243f07d1cc4e6fac2c80.zip |
iwlwifi: mvm: change when the BT_COEX is sent
The BT_COEX command should not be sent to the INIT
firmware image starting from 8000 family.
The firmware team also requested to send the BT_COEX
command after the PHY_DB_CMD and the PHY_CFG_CMD.
While at it:
s/iwl_send_bt_init_conf/iwl_mvm_send_bt_init_conf/
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c b/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c index c3ab13ee4097..f87a43dad086 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c @@ -644,7 +644,7 @@ iwl_dbgfs_bt_force_ant_write(struct iwl_mvm *mvm, char *buf, modes_str[mvm->bt_force_ant_mode]); if (iwl_mvm_firmware_running(mvm)) - ret = iwl_send_bt_init_conf(mvm); + ret = iwl_mvm_send_bt_init_conf(mvm); else ret = 0; |