]> git.baikalelectronics.ru Git - kernel.git/commitdiff
iwlwifi: mvm: isolate the get nvm flow
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Wed, 10 Feb 2021 15:15:07 +0000 (17:15 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Wed, 10 Feb 2021 23:52:08 +0000 (01:52 +0200)
This will soon be a bit more complicated. Take it out
to a function.

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20210210171218.431f31a86ea0.I9db96647eb9c7142051e26cd5be3f52c5ffc5534@changeid
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/ops.c

index a690f3a67d7c83f310283fab6df9d73c3f081dd7..130e78edd4ed0a9529446b819e05fedae7013c7c 100644 (file)
@@ -645,6 +645,28 @@ static const struct iwl_fw_runtime_ops iwl_mvm_fwrt_ops = {
        .d3_debug_enable = iwl_mvm_d3_debug_enable,
 };
 
+static int iwl_mvm_start_get_nvm(struct iwl_mvm *mvm)
+{
+       int ret;
+
+       mutex_lock(&mvm->mutex);
+
+       ret = iwl_run_init_mvm_ucode(mvm);
+
+       if (ret && ret != -ERFKILL)
+               iwl_fw_dbg_error_collect(&mvm->fwrt, FW_DBG_TRIGGER_DRIVER);
+
+       if (!iwlmvm_mod_params.init_dbg || !ret)
+               iwl_mvm_stop_device(mvm);
+
+       mutex_unlock(&mvm->mutex);
+
+       if (ret < 0)
+               IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", ret);
+
+       return ret;
+}
+
 static struct iwl_op_mode *
 iwl_op_mode_mvm_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
                      const struct iwl_fw *fw, struct dentry *dbgfs_dir)
@@ -866,20 +888,11 @@ iwl_op_mode_mvm_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
        if (err)
                goto out_free;
 
-       mutex_lock(&mvm->mutex);
-       err = iwl_run_init_mvm_ucode(mvm);
-       if (err && err != -ERFKILL)
-               iwl_fw_dbg_error_collect(&mvm->fwrt, FW_DBG_TRIGGER_DRIVER);
-       if (!iwlmvm_mod_params.init_dbg || !err)
-               iwl_mvm_stop_device(mvm);
-       mutex_unlock(&mvm->mutex);
-       if (err < 0) {
-               IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", err);
-               goto out_free;
-       }
-
        scan_size = iwl_mvm_scan_size(mvm);
 
+       if (iwl_mvm_start_get_nvm(mvm))
+               goto out_free;
+
        mvm->scan_cmd = kmalloc(scan_size, GFP_KERNEL);
        if (!mvm->scan_cmd)
                goto out_free;