1. 03 12月, 2013 1 次提交
  2. 12 11月, 2013 1 次提交
    • S
      ath9k: Use correct PCIE initvals for AR9485 · 2d22c7dd
      Sujith Manoharan 提交于
      Currently, the PLL is turned off for AR9485 when
      switching to a low power state, but AR9485 has an issue
      where the card will become unresponsive if left idle
      for a long time without any traffic. To fix this,
      force the PLL to always be on using a different initval
      array, ar9485_1_1_pll_on_cdr_on_clkreq_disable_L1.
      
      This is done for most of the AR9485 based cards
      like HB125, WB225 etc. but certain models require the
      feature to be turned off. Identify such cards and use
      default values for them.
      Signed-off-by: NSujith Manoharan <c_manoha@qca.qualcomm.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      2d22c7dd
  3. 19 10月, 2013 2 次提交
  4. 15 10月, 2013 3 次提交
  5. 27 9月, 2013 4 次提交
  6. 25 9月, 2013 1 次提交
    • J
      ath: Remove extern from function prototypes · a3dabaf0
      Joe Perches 提交于
      There are a mix of function prototypes with and without extern
      in the kernel sources.  Standardize on not using extern for
      function prototypes.
      
      Function prototypes don't need to be written with extern.
      extern is assumed by the compiler.  Its use is as unnecessary as
      using auto to declare automatic/local variables in a block.
      Signed-off-by: NJoe Perches <joe@perches.com>
      a3dabaf0
  7. 27 8月, 2013 1 次提交
  8. 17 8月, 2013 1 次提交
  9. 16 8月, 2013 3 次提交
  10. 10 8月, 2013 5 次提交
  11. 06 8月, 2013 3 次提交
  12. 02 8月, 2013 1 次提交
  13. 24 7月, 2013 1 次提交
  14. 25 6月, 2013 1 次提交
  15. 19 6月, 2013 2 次提交
  16. 15 6月, 2013 1 次提交
  17. 13 6月, 2013 3 次提交
  18. 23 5月, 2013 2 次提交
  19. 18 5月, 2013 1 次提交
  20. 24 4月, 2013 1 次提交
  21. 23 4月, 2013 1 次提交
  22. 11 4月, 2013 1 次提交
    • F
      ath9k: fix handling of broken descriptors · 723e7113
      Felix Fietkau 提交于
      As the comment in ath_get_next_rx_buf indicates, if a descriptor with
      the done bit set follows one with the done bit cleared, both descriptors
      should be discarded, however the driver is not doing that yet.
      
      To fix this, use the rs->rs_more flag as an indicator that the following
      frame should be discarded. This also helps with the split buffer case:
      if the first part of the frame is discarded, the following parts need to
      be discarded as well, since they contain no valid header or usable data.
      Signed-off-by: NFelix Fietkau <nbd@openwrt.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      723e7113