Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a55e50f0 authored by Amitkumar Karwar's avatar Amitkumar Karwar Committed by Kalle Valo
Browse files

rsi: increase max supported aggregation subframes



Maximum number of supported aggregation subframes has been increased
to 8. This is the optimal number for the driver.

Signed-off-by: default avatarAmitkumar Karwar <amit.karwar@redpinesignals.com>
Signed-off-by: default avatarSiva Rebbagondla <siva.rebbagondla@redpinesignals.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent cbbfdd6c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1955,7 +1955,8 @@ int rsi_mac80211_attach(struct rsi_common *common)
	hw->uapsd_queues = RSI_IEEE80211_UAPSD_QUEUES;
	hw->uapsd_max_sp_len = IEEE80211_WMM_IE_STA_QOSINFO_SP_ALL;

	hw->max_tx_aggregation_subframes = 6;
	hw->max_tx_aggregation_subframes = RSI_MAX_TX_AGGR_FRMS;
	hw->max_rx_aggregation_subframes = RSI_MAX_RX_AGGR_FRMS;
	rsi_register_rates_channels(adapter, NL80211_BAND_2GHZ);
	rsi_register_rates_channels(adapter, NL80211_BAND_5GHZ);
	hw->rate_control_algorithm = "AARF";
+3 −0
Original line number Diff line number Diff line
@@ -225,6 +225,9 @@
#define RSI_WOW_DISCONNECT		BIT(5)
#endif

#define RSI_MAX_TX_AGGR_FRMS		8
#define RSI_MAX_RX_AGGR_FRMS		8

enum opmode {
	RSI_OPMODE_UNSUPPORTED = -1,
	RSI_OPMODE_AP = 0,