Message ID | 20241111070152.85140-1-dmantipov@yandex.ru |
---|---|
State | New |
Headers | show |
Series | [v2,1/4] wifi: ath11k: cleanup struct ath11k_vif | expand |
Dmitry Antipov <dmantipov@yandex.ru> writes: > Remove set but otherwise unused 'tx_seq_no' member of 'struct ath11k_vif', > adjust 'ath11k_control_beaconing()' accordingly. This field was actually > unused since an initial commit of the driver. Compile tested only. > > Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru> Acked-by: Kalle Valo <kvalo@kernel.org>
On Mon, 11 Nov 2024 10:01:49 +0300, Dmitry Antipov wrote: > Remove set but otherwise unused 'tx_seq_no' member of 'struct ath11k_vif', > adjust 'ath11k_control_beaconing()' accordingly. This field was actually > unused since an initial commit of the driver. Compile tested only. > > Applied, thanks! [1/4] wifi: ath11k: cleanup struct ath11k_vif commit: 733a8c69ded704616b864d30d2531d090ee7a57e [2/4] wifi: ath11k: cleanup struct ath11k_reg_tpc_power_info commit: 95e5de4aae8ca1af851fc922a854bbe822bf2dd4 [3/4] wifi: ath11k: cleanup struct ath11k_mon_data commit: 93962446ef907cb169b089d0ff3f356e7ce004ab [4/4] wifi: ath11k: miscellaneous spelling fixes commit: 8f5e8e7efb135fc648abbb572bd86d0c96819eaf Best regards,
diff --git a/drivers/net/wireless/ath/ath11k/core.h b/drivers/net/wireless/ath/ath11k/core.h index 09c37e19a168..5ab1fdd21144 100644 --- a/drivers/net/wireless/ath/ath11k/core.h +++ b/drivers/net/wireless/ath/ath11k/core.h @@ -370,7 +370,6 @@ struct ath11k_vif { struct ath11k *ar; struct ieee80211_vif *vif; - u16 tx_seq_no; struct wmi_wmm_params_all_arg wmm_params; struct list_head list; union { diff --git a/drivers/net/wireless/ath/ath11k/mac.c b/drivers/net/wireless/ath/ath11k/mac.c index e6acbff06749..9757ac4aae50 100644 --- a/drivers/net/wireless/ath/ath11k/mac.c +++ b/drivers/net/wireless/ath/ath11k/mac.c @@ -1697,8 +1697,6 @@ static void ath11k_control_beaconing(struct ath11k_vif *arvif, return; } - arvif->tx_seq_no = 0x1000; - arvif->aid = 0; ether_addr_copy(arvif->bssid, info->bssid);
Remove set but otherwise unused 'tx_seq_no' member of 'struct ath11k_vif', adjust 'ath11k_control_beaconing()' accordingly. This field was actually unused since an initial commit of the driver. Compile tested only. Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru> --- v2: join the series but unchanged otherwise --- drivers/net/wireless/ath/ath11k/core.h | 1 - drivers/net/wireless/ath/ath11k/mac.c | 2 -- 2 files changed, 3 deletions(-)