iwlwifi: mvm: fix bug in parse_nvm_sections
The old code checks if hw_section_num is valid while the right thing to do is to check if section[hw_section_num].data is valid. Signed-off-by: Eran Harary <eran.harary@intel.com> Reviewed-by: Liad Kaufman <liad.kaufman@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
9f32e01731
commit
bb926924e9
|
@ -246,7 +246,7 @@ iwl_parse_nvm_sections(struct iwl_mvm *mvm)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
/* MAC_OVERRIDE or at least HW section must exist */
|
/* MAC_OVERRIDE or at least HW section must exist */
|
||||||
if (!mvm->cfg->nvm_hw_section_num &&
|
if (!mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data &&
|
||||||
!mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) {
|
!mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) {
|
||||||
IWL_ERR(mvm,
|
IWL_ERR(mvm,
|
||||||
"Can't parse mac_address, empty sections\n");
|
"Can't parse mac_address, empty sections\n");
|
||||||
|
|
Loading…
Reference in New Issue