Includes the following changes: 9edff13abd mac80211: disable potentially harmful PS software retry for A-MPDU sessions 75216a76b0 mac80211: backport upstream fix for CSA in IBSS mode 368cc8ef47 mac80211: update brcmfmac backporting brcmf_err cleanups 66a63d25c4 mac80211: fix build on linux 3.18 9eacb9d7fc rt2x00: mt7620: lots of improvements fd94fa61a7 mac80211: brcmfmac: update Raspberry Pi patches for linux 4.9 649e766a64 mac80211: update to wireless-testing 2017-01-31 47540afa5d ath9k: add a warning to the tx99 config option b367eef21d mac80211: rt2x00: add support for external LNA on MT7620 9200e168f2 mac80211: move (& update) upstream accepted brcmfmac patches Signed-off-by: Felix Fietkau <nbd@nbd.name>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
--- a/drivers/net/wireless/ath/ath10k/mac.c
|
|
+++ b/drivers/net/wireless/ath/ath10k/mac.c
|
|
@@ -8003,6 +8003,21 @@ static int ath10k_mac_init_rd(struct ath
|
|
return 0;
|
|
}
|
|
|
|
+#ifdef CPTCFG_MAC80211_LEDS
|
|
+static const struct ieee80211_tpt_blink ath10k_tpt_blink[] = {
|
|
+ { .throughput = 0 * 1024, .blink_time = 334 },
|
|
+ { .throughput = 1 * 1024, .blink_time = 260 },
|
|
+ { .throughput = 2 * 1024, .blink_time = 220 },
|
|
+ { .throughput = 5 * 1024, .blink_time = 190 },
|
|
+ { .throughput = 10 * 1024, .blink_time = 170 },
|
|
+ { .throughput = 25 * 1024, .blink_time = 150 },
|
|
+ { .throughput = 54 * 1024, .blink_time = 130 },
|
|
+ { .throughput = 120 * 1024, .blink_time = 110 },
|
|
+ { .throughput = 265 * 1024, .blink_time = 80 },
|
|
+ { .throughput = 586 * 1024, .blink_time = 50 },
|
|
+};
|
|
+#endif
|
|
+
|
|
int ath10k_mac_register(struct ath10k *ar)
|
|
{
|
|
static const u32 cipher_suites[] = {
|
|
@@ -8248,6 +8263,12 @@ int ath10k_mac_register(struct ath10k *a
|
|
ar->hw->wiphy->cipher_suites = cipher_suites;
|
|
ar->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
|
|
|
|
+#ifdef CPTCFG_MAC80211_LEDS
|
|
+ ieee80211_create_tpt_led_trigger(ar->hw,
|
|
+ IEEE80211_TPT_LEDTRIG_FL_RADIO, ath10k_tpt_blink,
|
|
+ ARRAY_SIZE(ath10k_tpt_blink));
|
|
+#endif
|
|
+
|
|
ret = ieee80211_register_hw(ar->hw);
|
|
if (ret) {
|
|
ath10k_err(ar, "failed to register ieee80211: %d\n", ret);
|