1. 13 1月, 2015 1 次提交
  2. 12 1月, 2015 2 次提交
  3. 23 12月, 2014 4 次提交
  4. 08 12月, 2014 5 次提交
  5. 01 12月, 2014 3 次提交
  6. 26 11月, 2014 3 次提交
  7. 24 11月, 2014 1 次提交
  8. 17 11月, 2014 2 次提交
  9. 31 10月, 2014 1 次提交
    • M
      ath10k: speed up hw recovery · 7962b0d8
      Michal Kazior 提交于
      In some cases hw recovery was taking an absurdly
      long time due to ath10k waiting for things that
      would never really complete.
      
      Instead of waiting for inevitable timeouts poke
      all completions and wakequeues and check if it's
      still worth waiting.
      
      Reading/writing ar->state requires conf_mutex.
      Since waiters might be holding it introduce a new
      flag CRASH_FLUSH so it's possible to tell waiters
      to abort whatever they were waiting for.
      Signed-off-by: NMichal Kazior <michal.kazior@tieto.com>
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      7962b0d8
  10. 21 10月, 2014 1 次提交
  11. 08 10月, 2014 2 次提交
  12. 07 10月, 2014 1 次提交
  13. 29 9月, 2014 3 次提交
  14. 23 9月, 2014 10 次提交
  15. 18 9月, 2014 1 次提交
    • K
      ath10k: use ether_addr_copy() · b25f32cb
      Kalle Valo 提交于
      As suggeested by checkpatch:
      
      WARNING: Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)
      
      In wmi.c I had to change due to sparse warnings copying of struct wmi_mac_addr
      from form &cmd->peer_macaddr.addr to cmd->peer_macaddr.addr. In
      ath10k_wmi_set_ap_ps_param() I also added the missing ".addr" to the copy
      command.
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      b25f32cb