1. 25 6月, 2014 1 次提交
  2. 13 5月, 2014 2 次提交
    • E
      iwlwifi: mvm: revisit the NVM handling code · d6aeb354
      Eran Harary 提交于
      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: NEran Harary <eran.harary@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      d6aeb354
    • E
      iwlwifi: remove CMD_SYNC · a1022927
      Emmanuel Grumbach 提交于
      CMD_SYNC is really 0 which is confusing:
      
      if (cmd.flags & CMD_SYNC) is always false.
      Fix this by simply removing its definition.
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      a1022927
  3. 11 5月, 2014 1 次提交
  4. 07 5月, 2014 5 次提交
  5. 13 2月, 2014 2 次提交
  6. 04 2月, 2014 1 次提交
  7. 14 1月, 2014 2 次提交
  8. 01 1月, 2014 2 次提交
  9. 10 12月, 2013 1 次提交
  10. 18 10月, 2013 1 次提交
  11. 11 10月, 2013 1 次提交
  12. 29 5月, 2013 1 次提交
  13. 17 5月, 2013 4 次提交
  14. 20 3月, 2013 1 次提交
  15. 06 3月, 2013 2 次提交
  16. 01 2月, 2013 1 次提交
    • J
      iwlwifi: add the MVM driver · 8ca151b5
      Johannes Berg 提交于
      Newer firmware revisions have a completely new
      firmware API. This is the new driver for this
      new API.
      
      I've listed the people who directly contributed
      code, but many others from various teams have
      contributed in other ways.
      
      Cc: Alexander Bondar <alexander.bondar@intel.com>
      Cc: Amit Beka <amit.beka@intel.com>
      Cc: Amnon Paz <amnonx.paz@intel.com>
      Cc: Assaf Krauss <assaf.krauss@intel.com>
      Cc: David Spinadel <david.spinadel@intel.com>
      Cc: Dor Shaish <dor.shaish@intel.com>
      Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
      Cc: Eytan Lifshitz <eytan.lifshitz@intel.com>
      Cc: Ilan Peer <ilan.peer@intel.com>
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      8ca151b5