1. 12 1月, 2015 1 次提交
  2. 23 12月, 2014 4 次提交
  3. 08 12月, 2014 5 次提交
  4. 01 12月, 2014 3 次提交
  5. 26 11月, 2014 3 次提交
  6. 24 11月, 2014 1 次提交
  7. 17 11月, 2014 2 次提交
  8. 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
  9. 21 10月, 2014 1 次提交
  10. 08 10月, 2014 2 次提交
  11. 07 10月, 2014 1 次提交
  12. 29 9月, 2014 3 次提交
  13. 23 9月, 2014 10 次提交
  14. 18 9月, 2014 3 次提交
    • 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
    • K
      ath10k: miscellaneous checkpatch fixes · 8cc7f26c
      Kalle Valo 提交于
      Fixes checkpatch warnings:
      
      ath10k/htc.c:49: WARNING: Possible unnecessary 'out of memory' message
      ath10k/htc.c:810: WARNING: Possible unnecessary 'out of memory' message
      ath10k/htt.h:1034: CHECK: Please use a blank line after function/struct/union/enum declarations
      ath10k/htt_rx.c:135: CHECK: Unnecessary parentheses around htt->rx_ring.alloc_idx.vaddr
      ath10k/htt_rx.c:173: CHECK: Unnecessary parentheses around htt->rx_ring.alloc_idx.vaddr
      ath10k/pci.c:633: WARNING: macros should not use a trailing semicolon
      ath10k/wmi.c:3594: WARNING: quoted string split across lines
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      8cc7f26c
    • K
      ath10k: fix missing a blank line after declarations · af762c0b
      Kalle Valo 提交于
      Fixes checkpatch warnings:
      
      WARNING: Missing a blank line after declarations
      
      Please note that some of the cases I fixed by moving the variable declarations
      to the beginning of the function, which is the preferred style in ath10k.
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      af762c0b