mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

Synchronize the ath11k backports with the current ath-next tree. This introduces support for MBSSID and EMA, adds factory test mode and some new HTT stats. Tested-by: Francisco G Luna <frangonlun@gmail.com> Signed-off-by: Robert Marko <robimarko@gmail.com>
53 lines
1.8 KiB
Diff
53 lines
1.8 KiB
Diff
From cf604e72bc6e6db68c7fcaa8779b03ec14b8d2fa Mon Sep 17 00:00:00 2001
|
|
From: Aloka Dixit <quic_alokad@quicinc.com>
|
|
Date: Fri, 5 May 2023 16:11:27 +0300
|
|
Subject: [PATCH 73/77] wifi: ath11k: rename MBSSID fields in wmi_vdev_up_cmd
|
|
|
|
Rename trans_bssid to tx_vdev_bssid to make it similar to vdev_bssid.
|
|
|
|
Rename profile_num to nontx_profile_cnt, and profile_idx to
|
|
nontx_profile_idx which makes it clear that these store configurations
|
|
related to MBSSID non-transmitting profiles.
|
|
|
|
Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.7.0.1-01744-QCAHKSWPL_SILICONZ-1
|
|
|
|
Signed-off-by: Aloka Dixit <quic_alokad@quicinc.com>
|
|
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
|
|
Link: https://lore.kernel.org/r/20230405221648.17950-4-quic_alokad@quicinc.com
|
|
---
|
|
drivers/net/wireless/ath/ath11k/wmi.c | 6 +++---
|
|
drivers/net/wireless/ath/ath11k/wmi.h | 6 +++---
|
|
2 files changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/wmi.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/wmi.c
|
|
@@ -1029,10 +1029,10 @@ int ath11k_wmi_vdev_up(struct ath11k *ar
|
|
bss_conf = &arvif->vif->bss_conf;
|
|
|
|
if (bss_conf->nontransmitted) {
|
|
- ether_addr_copy(cmd->trans_bssid.addr,
|
|
+ ether_addr_copy(cmd->tx_vdev_bssid.addr,
|
|
bss_conf->transmitter_bssid);
|
|
- cmd->profile_idx = bss_conf->bssid_index;
|
|
- cmd->profile_num = bss_conf->bssid_indicator;
|
|
+ cmd->nontx_profile_idx = bss_conf->bssid_index;
|
|
+ cmd->nontx_profile_cnt = bss_conf->bssid_indicator;
|
|
}
|
|
}
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/wmi.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/wmi.h
|
|
@@ -2625,9 +2625,9 @@ struct wmi_vdev_up_cmd {
|
|
u32 vdev_id;
|
|
u32 vdev_assoc_id;
|
|
struct wmi_mac_addr vdev_bssid;
|
|
- struct wmi_mac_addr trans_bssid;
|
|
- u32 profile_idx;
|
|
- u32 profile_num;
|
|
+ struct wmi_mac_addr tx_vdev_bssid;
|
|
+ u32 nontx_profile_idx;
|
|
+ u32 nontx_profile_cnt;
|
|
} __packed;
|
|
|
|
struct wmi_vdev_stop_cmd {
|