aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/mvm/phy-ctxt.c
diff options
context:
space:
mode:
authorEran Harary <eran.harary@intel.com>2014-05-11 09:44:17 +0300
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>2014-05-13 13:58:15 +0300
commitd6aeb354f9c5bbbd89b636e889be918ed1441267 (patch)
treed06a9c7f2843b5f0b1ab20cc455c1af484f35017 /drivers/net/wireless/iwlwifi/mvm/phy-ctxt.c
parentiwlwifi: mvm: BT Coex - fix boost register / LUT values (diff)
downloadlinux-dev-d6aeb354f9c5bbbd89b636e889be918ed1441267.tar.xz
linux-dev-d6aeb354f9c5bbbd89b636e889be918ed1441267.zip
iwlwifi: mvm: revisit the NVM handling code
Fix a bug in nvm_read_section function if size of the section is a multiple of 2K: - if the size of the section is *not* multiple of 2K, then we will have: read(2K) - return 2K ... read(2K) - return 2K read(2K) - return the rest (in bytes) and exit the while loop. - else, if the size of the section is a multiple of 2K, then we have: read(2K) - return 2K read(2K) - return 2K read(2K) - return 2K read(2K) - return 0 and exit the while with an error. We should not return an error in the latter case, because it might well be that the section was completely read. Also, we try now to read all the sections as this is needed for new devices. Signed-off-by: Eran Harary <eran.harary@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/phy-ctxt.c')
0 files changed, 0 insertions, 0 deletions