1. 05 10月, 2015 2 次提交
  2. 04 8月, 2015 2 次提交
  3. 03 6月, 2015 1 次提交
    • J
      iwlwifi: prepare for higher API/CAPA bits · 859d914c
      Johannes Berg 提交于
      Currently, loading the firmware fails when it has higher API or CAPA
      bits than the driver supports. That's an issue with integration.
      
      At the same time, actually using api[0] and capa[0] will become
      confusing when we also have api[1] and capa[1], and it's almost
      certain that we'll mix up the bits and use the bits for api[1] with
      api[0] by accident.
      
      Avoid all this by translating the API/CAPA bits to the regular kernel
      test_bit() format, and also providing wrapper functions. Also use the
      __bitwise__ facility of sparse to check that we're testing the right
      one.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      859d914c
  4. 28 5月, 2015 1 次提交
  5. 02 4月, 2015 1 次提交
  6. 30 3月, 2015 1 次提交
  7. 26 3月, 2015 1 次提交
  8. 12 3月, 2015 10 次提交
  9. 22 1月, 2015 2 次提交
  10. 01 12月, 2014 1 次提交
  11. 14 9月, 2014 1 次提交
  12. 04 9月, 2014 1 次提交
  13. 23 7月, 2014 1 次提交
  14. 08 7月, 2014 1 次提交
  15. 25 6月, 2014 2 次提交
  16. 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
  17. 11 5月, 2014 1 次提交
  18. 07 5月, 2014 5 次提交
  19. 13 2月, 2014 2 次提交
  20. 04 2月, 2014 1 次提交
  21. 14 1月, 2014 1 次提交