projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c3e62a
)
iwlwifi: mvm: remove upper limit for error log base pointer
author
Ariej Marjieh
<
[email protected]
>
Tue, 31 Dec 2013 16:52:13 +0000
(18:52 +0200)
committer
Emmanuel Grumbach
<
[email protected]
>
Thu, 6 Feb 2014 19:11:22 +0000
(21:11 +0200)
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 <
[email protected]
>
Reviewed-by: Johannes Berg <
[email protected]
>
Signed-off-by: Emmanuel Grumbach <
[email protected]
>
drivers/net/wireless/iwlwifi/mvm/utils.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/iwlwifi/mvm/utils.c
b/drivers/net/wireless/iwlwifi/mvm/utils.c
index 7440ffa766e644ee8f135ff71d35ca4b47cadbc3..68b7face11afc4d38750b61596edc3374b93d87f 100644
(file)
--- a/
drivers/net/wireless/iwlwifi/mvm/utils.c
+++ b/
drivers/net/wireless/iwlwifi/mvm/utils.c
@@
-394,7
+394,7
@@
void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm)
base = mvm->fw->inst_errlog_ptr;
}
- if (base < 0x800000
|| base >= 0x80C000
) {
+ if (base < 0x800000) {
IWL_ERR(mvm,
"Not valid error log pointer 0x%08X for %s uCode\n",
base,