mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 22:58:29 +00:00
iwlwifi: mvm: remove upper limit for error log base pointer
Newer NIC have different memory layout in their SRAM, so change the checks in iwl_mvm_dump_nic_error_log accordingly. Signed-off-by: Ariej Marjieh <ariej.marjieh@intel.com> Reviewed-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
2c3e62a148
commit
15ef413792
1 changed files with 1 additions and 1 deletions
|
@ -394,7 +394,7 @@ void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm)
|
||||||
base = mvm->fw->inst_errlog_ptr;
|
base = mvm->fw->inst_errlog_ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (base < 0x800000 || base >= 0x80C000) {
|
if (base < 0x800000) {
|
||||||
IWL_ERR(mvm,
|
IWL_ERR(mvm,
|
||||||
"Not valid error log pointer 0x%08X for %s uCode\n",
|
"Not valid error log pointer 0x%08X for %s uCode\n",
|
||||||
base,
|
base,
|
||||||
|
|
Loading…
Add table
Reference in a new issue