mirror of https://gitee.com/openkylin/linux.git
iwlwifi: mvm: don't send a command the firmware doesn't know
-9.ucode doesn't know the command SHARED_MEM_CFG yet.
Fixes: 04fd2c2822
("iwlwifi: mvm: add rxf and txf to dump data")
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
a25d40e27e
commit
c38740d015
|
@ -575,7 +575,8 @@ int iwl_mvm_up(struct iwl_mvm *mvm)
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
iwl_mvm_get_shared_mem_conf(mvm);
|
if (IWL_UCODE_API(mvm->fw->ucode_ver) >= 10)
|
||||||
|
iwl_mvm_get_shared_mem_conf(mvm);
|
||||||
|
|
||||||
ret = iwl_mvm_sf_update(mvm, NULL, false);
|
ret = iwl_mvm_sf_update(mvm, NULL, false);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
|
Loading…
Reference in New Issue