An error occurred fetching the project authors.
  1. 04 Aug, 2015 1 commit
  2. 03 Jun, 2015 1 commit
    • Johannes Berg's avatar
      iwlwifi: prepare for higher API/CAPA bits · 859d914c
      Johannes Berg authored
      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: default avatarJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      859d914c
  3. 28 May, 2015 1 commit
  4. 02 Apr, 2015 1 commit
  5. 30 Mar, 2015 1 commit
  6. 26 Mar, 2015 1 commit
  7. 12 Mar, 2015 10 commits
  8. 22 Jan, 2015 2 commits
  9. 01 Dec, 2014 1 commit
  10. 14 Sep, 2014 1 commit
  11. 03 Sep, 2014 1 commit
  12. 22 Jul, 2014 1 commit
  13. 07 Jul, 2014 1 commit
  14. 24 Jun, 2014 2 commits
  15. 13 May, 2014 2 commits
    • Eran Harary's avatar
      iwlwifi: mvm: revisit the NVM handling code · d6aeb354
      Eran Harary authored
      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: default avatarEran Harary <eran.harary@intel.com>
      Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      d6aeb354
    • Emmanuel Grumbach's avatar
      iwlwifi: remove CMD_SYNC · a1022927
      Emmanuel Grumbach authored
      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: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      a1022927
  16. 11 May, 2014 1 commit
  17. 06 May, 2014 5 commits
  18. 13 Feb, 2014 2 commits
  19. 03 Feb, 2014 1 commit
  20. 13 Jan, 2014 2 commits
  21. 31 Dec, 2013 2 commits