diff mbox

[v2,01/10] rtlwifi: enable mac80211 fast-tx support

Message ID 20180129032641.17841-2-pkshih@realtek.com (mailing list archive)
State Accepted
Commit 6942bdc4bf577e6fedff03111d10763a07622734
Delegated to: Kalle Valo
Headers show

Commit Message

Ping-Ke Shih Jan. 29, 2018, 3:26 a.m. UTC
From: Ping-Ke Shih <pkshih@realtek.com>

Enable the mac80211 fast-tx feature, since our driver already support
hw_flags required by fast-tx and is able to let mac80211 stack to transmit
packet through fast-xmit path.

Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
---
 drivers/net/wireless/realtek/rtlwifi/base.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Kalle Valo Feb. 27, 2018, 4:16 p.m. UTC | #1
Ping-Ke Shih <pkshih@realtek.com> wrote:

> From: Ping-Ke Shih <pkshih@realtek.com>
> 
> Enable the mac80211 fast-tx feature, since our driver already support
> hw_flags required by fast-tx and is able to let mac80211 stack to transmit
> packet through fast-xmit path.
> 
> Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
> Acked-by: Larry Finger <Larry.Finger@lwfinger.net>

10 patches applied to wireless-drivers-next.git, thanks.

6942bdc4bf57 rtlwifi: enable mac80211 fast-tx support
1ca72c3047aa rtlwifi: Add Support VHT to spec_ver
5f380ceff5f5 rtlwifi: Use 6 bits as sequence number of TX report
4a7093b914aa rtlwifi: Extend tx_power_by_rate_offset size for newer IC
81b813ed2fde rtlwifi: Add rate section and its related definition and comment
50da5da1562b rtlwifi: Fix VHT NSS in RC
ed979a1ed46b rtlwifi: add definition radio_mask for RF and maximum bandwidth
2cdd634e7e36 rtlwifi: add efuse ops for other components
d7297a86fc86 rtlwifi: btcoex: add routine to set default port id
94907e8d135b rtlwifi: btcoex: Add 8822be btcoex supported files for wifi only
diff mbox

Patch

diff --git a/drivers/net/wireless/realtek/rtlwifi/base.c b/drivers/net/wireless/realtek/rtlwifi/base.c
index d6c03bd5cc65..e461eed32699 100644
--- a/drivers/net/wireless/realtek/rtlwifi/base.c
+++ b/drivers/net/wireless/realtek/rtlwifi/base.c
@@ -397,6 +397,7 @@  static void _rtl_init_mac80211(struct ieee80211_hw *hw)
 	ieee80211_hw_set(hw, MFP_CAPABLE);
 	ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS);
 	ieee80211_hw_set(hw, SUPPORTS_AMSDU_IN_AMPDU);
+	ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
 
 	/* swlps or hwlps has been set in diff chip in init_sw_vars */
 	if (rtlpriv->psc.swctrl_lps) {