1. 07 3月, 2013 1 次提交
  2. 10 1月, 2013 1 次提交
  3. 11 12月, 2012 3 次提交
  4. 30 10月, 2012 2 次提交
  5. 20 10月, 2012 1 次提交
  6. 25 9月, 2012 2 次提交
  7. 12 9月, 2012 5 次提交
  8. 11 9月, 2012 1 次提交
  9. 07 8月, 2012 2 次提交
  10. 18 7月, 2012 5 次提交
  11. 10 7月, 2012 3 次提交
  12. 07 6月, 2012 2 次提交
  13. 06 6月, 2012 1 次提交
  14. 30 5月, 2012 1 次提交
  15. 24 4月, 2012 1 次提交
    • G
      ath9k: fix TX power reporting on AR9003 chips · 75acd5a8
      Gabor Juhos 提交于
      The current code unconditionally reads the target
      power values for all modes from the EEPROM. However
      In 'ar9003_hw_set_power_per_rate_table' the regulatory
      caps are applied only on a mode specific subset of the
      power values.
      
      The reported TX power level is calculated from the
      maximum of the power values. Because some of these
      values are uncapped in certain cases, the reported
      TX power will be wrong.
      
      On the older chipset, we don't have such problems
      because only the mode specific subset of the power
      levels are retrieved from the EEPROM on those. Do
      the same for the AR9003 chips to fix the issue.
      Signed-off-by: NGabor Juhos <juhosg@openwrt.org>
      Acked-by: NFelix Fietkau <nbd@openwrt.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      75acd5a8
  16. 18 4月, 2012 3 次提交
  17. 17 4月, 2012 2 次提交
  18. 13 4月, 2012 1 次提交
  19. 28 2月, 2012 1 次提交
  20. 05 1月, 2012 1 次提交
    • L
      ath9k_hw: fix sparse complaint on ar9003_switch_com_spdt_get() · a98aa7ae
      Luis R. Rodriguez 提交于
      This fixes this sparse complaint:
      
      make C=2 CF="-D__CHECK_ENDIAN__" M=drivers/net/wireless/ath/
      
        CHECK   drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
      drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3544:21: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3544:21:    expected restricted __le32 [usertype] val
      drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3544:21:    got restricted __le16 [usertype] switchcomspdt
      drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3546:21: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3546:21:    expected restricted __le32 [usertype] val
      drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3546:21:    got restricted __le16 [usertype] switchcomspdt
      
      The eep->modalHeader5G.switchcomspdt is a le16 and we return u16,
      so just return le16_to_cpu().
      
      Cc: Felix Fietkau <nbd@openwrt.org>
      Signed-off-by: NLuis R. Rodriguez <mcgrof@qca.qualcomm.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      a98aa7ae
  21. 20 12月, 2011 1 次提交