forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a number of minor fixes Signed-off-by: Felix Fietkau <[email protected]>
- Loading branch information
Showing
10 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | ||
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | ||
@@ -3313,6 +3313,10 @@ brcmf_cfg80211_set_power_mgmt(struct wip | ||
@@ -3314,6 +3314,10 @@ brcmf_cfg80211_set_power_mgmt(struct wip | ||
* preference in cfg struct to apply this to | ||
* FW later while initializing the dongle | ||
*/ | ||
|
2 changes: 1 addition & 1 deletion
2
package/kernel/mac80211/patches/mwl/801-libertas-configure-sysfs-links.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
package/kernel/mac80211/patches/mwl/802-libertas-set-wireless-macaddr.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -245,7 +245,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
if (iter == txqi) | ||
--- a/include/net/mac80211.h | ||
+++ b/include/net/mac80211.h | ||
@@ -1221,8 +1221,8 @@ struct ieee80211_tx_info { | ||
@@ -1222,8 +1222,8 @@ struct ieee80211_tx_info { | ||
status_data_idr:1, | ||
status_data:13, | ||
hw_queue:4, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/tx.c | ||
+++ b/tx.c | ||
@@ -350,7 +350,7 @@ mt76_tx(struct mt76_phy *phy, struct iee | ||
info->hw_queue |= FIELD_PREP(MT_TX_HW_QUEUE_PHY, phy->band_idx); | ||
|
||
if ((info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) || | ||
- (info->control.flags & IEEE80211_TX_CTRL_SCAN_TX)) | ||
+ (info->control.flags & IEEE80211_TX_CTRL_DONT_USE_RATE_MASK)) | ||
head = &wcid->tx_offchannel; | ||
else | ||
head = &wcid->tx_pending; |