Commit 53bcb41d authored by Jeff Johnson's avatar Jeff Johnson Committed by Kalle Valo

wifi: ath11k: Remove obsolete struct wmi_peer_flags_map *peer_flags

Currently both struct ath11k_pdev_wmi and struct ath11k_wmi_base
define:
	const struct wmi_peer_flags_map *peer_flags;

But that member is not used, and in fact, struct wmi_peer_flags_map
is not defined within ath11k; these are obsolete remnants inherited
from ath10k. So remove them.

Compile tested only.
Signed-off-by: default avatarJeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: default avatarKalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20231106-ath-peer-flags-v1-1-781e83b7e8e8@quicinc.com
parent 3b6ec040
...@@ -2580,7 +2580,6 @@ struct wmi_service_available_event { ...@@ -2580,7 +2580,6 @@ struct wmi_service_available_event {
struct ath11k_pdev_wmi { struct ath11k_pdev_wmi {
struct ath11k_wmi_base *wmi_ab; struct ath11k_wmi_base *wmi_ab;
enum ath11k_htc_ep_id eid; enum ath11k_htc_ep_id eid;
const struct wmi_peer_flags_map *peer_flags;
u32 rx_decap_mode; u32 rx_decap_mode;
wait_queue_head_t tx_ce_desc_wq; wait_queue_head_t tx_ce_desc_wq;
}; };
...@@ -5754,7 +5753,6 @@ struct ath11k_wmi_base { ...@@ -5754,7 +5753,6 @@ struct ath11k_wmi_base {
struct completion unified_ready; struct completion unified_ready;
DECLARE_BITMAP(svc_map, WMI_MAX_EXT2_SERVICE); DECLARE_BITMAP(svc_map, WMI_MAX_EXT2_SERVICE);
wait_queue_head_t tx_credits_wq; wait_queue_head_t tx_credits_wq;
const struct wmi_peer_flags_map *peer_flags;
u32 num_mem_chunks; u32 num_mem_chunks;
u32 rx_decap_mode; u32 rx_decap_mode;
struct wmi_host_mem_chunk mem_chunks[WMI_MAX_MEM_REQS]; struct wmi_host_mem_chunk mem_chunks[WMI_MAX_MEM_REQS];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment