mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
iwlwifi: mvm: move iwl_mvm_stop_device() out of line
This function has grown quite a bit over time, move it out of line before we grow it even further. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Link: https://lore.kernel.org/r/iwlwifi.20201209231352.1a0211e66906.I572eb69dc3738319310c9cbe03a36d942f4f68f7@changeid Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
This commit is contained in:
parent
e20a5c9f76
commit
cf5b462768
2 changed files with 15 additions and 10 deletions
|
@ -1946,16 +1946,7 @@ static inline u32 iwl_mvm_flushable_queues(struct iwl_mvm *mvm)
|
||||||
~BIT(IWL_MVM_DQA_CMD_QUEUE));
|
~BIT(IWL_MVM_DQA_CMD_QUEUE));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void iwl_mvm_stop_device(struct iwl_mvm *mvm)
|
void iwl_mvm_stop_device(struct iwl_mvm *mvm);
|
||||||
{
|
|
||||||
lockdep_assert_held(&mvm->mutex);
|
|
||||||
iwl_fw_cancel_timestamp(&mvm->fwrt);
|
|
||||||
clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
|
|
||||||
iwl_fw_dbg_stop_sync(&mvm->fwrt);
|
|
||||||
iwl_trans_stop_device(mvm->trans);
|
|
||||||
iwl_free_fw_paging(&mvm->fwrt);
|
|
||||||
iwl_fw_dump_conf_clear(&mvm->fwrt);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Re-configure the SCD for a queue that has already been configured */
|
/* Re-configure the SCD for a queue that has already been configured */
|
||||||
int iwl_mvm_reconfig_scd(struct iwl_mvm *mvm, int queue, int fifo, int sta_id,
|
int iwl_mvm_reconfig_scd(struct iwl_mvm *mvm, int queue, int fifo, int sta_id,
|
||||||
|
|
|
@ -874,6 +874,20 @@ iwl_op_mode_mvm_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void iwl_mvm_stop_device(struct iwl_mvm *mvm)
|
||||||
|
{
|
||||||
|
lockdep_assert_held(&mvm->mutex);
|
||||||
|
|
||||||
|
iwl_fw_cancel_timestamp(&mvm->fwrt);
|
||||||
|
|
||||||
|
clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
|
||||||
|
|
||||||
|
iwl_fw_dbg_stop_sync(&mvm->fwrt);
|
||||||
|
iwl_trans_stop_device(mvm->trans);
|
||||||
|
iwl_free_fw_paging(&mvm->fwrt);
|
||||||
|
iwl_fw_dump_conf_clear(&mvm->fwrt);
|
||||||
|
}
|
||||||
|
|
||||||
static void iwl_op_mode_mvm_stop(struct iwl_op_mode *op_mode)
|
static void iwl_op_mode_mvm_stop(struct iwl_op_mode *op_mode)
|
||||||
{
|
{
|
||||||
struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
|
struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
|
||||||
|
|
Loading…
Add table
Reference in a new issue