1. 20 4月, 2018 1 次提交
  2. 27 3月, 2018 1 次提交
  3. 02 3月, 2018 1 次提交
  4. 21 12月, 2017 2 次提交
  5. 06 12月, 2017 3 次提交
  6. 25 11月, 2017 1 次提交
  7. 06 10月, 2017 1 次提交
  8. 18 8月, 2017 3 次提交
  9. 10 8月, 2017 2 次提交
  10. 09 8月, 2017 1 次提交
  11. 01 8月, 2017 2 次提交
  12. 30 6月, 2017 1 次提交
  13. 29 6月, 2017 4 次提交
  14. 23 6月, 2017 1 次提交
  15. 06 6月, 2017 3 次提交
  16. 20 4月, 2017 1 次提交
  17. 24 3月, 2017 1 次提交
  18. 26 1月, 2017 1 次提交
    • L
      iwlwifi: mvm: mark ret as maybe_unused in iwl_dbgfs_fw_restart_write() · 758d1a8a
      Luca Coelho 提交于
      The value returned from iwl_mvm_send_cmd_pdu() in this function is not
      used and always returns an error (which is the whole point of the
      call).  Tag the ret variable with __maybe_unused to avoid this compile
      warning when W=1 is used:
      
      /home/luca/iwlwifi/stack-dev/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c: In function ‘iwl_dbgfs_fw_restart_write’:
      /home/luca/iwlwifi/stack-dev/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c:875:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable]
        int ret;
            ^
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      758d1a8a
  19. 19 10月, 2016 1 次提交
  20. 19 9月, 2016 2 次提交
  21. 08 8月, 2016 1 次提交
  22. 06 7月, 2016 1 次提交
  23. 11 5月, 2016 2 次提交
    • L
      iwlwifi: mvm: add a new mvm reference type for RX data · 16e4dd8f
      Luca Coelho 提交于
      When a data packet is received, we need to make sure that we stay
      awake until it can be processed and wait a while before trying to
      enter runtime_suspend os system_suspend again.  To do so, add a new
      reference type for RX data and take the reference when sending the
      packet to mac80211.  We only do this for data packets, all the other
      RX packets sent by the firmware (e.g. notifications) are not a reason
      to prevent suspend.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      16e4dd8f
    • L
      iwlwifi: wake from runtime suspend before sending sync commands · 71b1230c
      Luca Coelho 提交于
      If a host command was queued while in runtime suspend, it would go out
      before the D0I3_END_CMD was sent.  Sometimes it works, but sometimes
      it fails, and it is obviously the wrong thing to do.
      
      To fix this, have the opmode take a reference before sending a SYNC
      command and make the pcie trans wait for the runtime state to become
      active before actually queueing the command.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      71b1230c
  24. 30 3月, 2016 2 次提交
  25. 10 3月, 2016 1 次提交