mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
51 lines
1.9 KiB
Diff
51 lines
1.9 KiB
Diff
From 94a6df31dcf042f74db8209680d04546ce964ad5 Mon Sep 17 00:00:00 2001
|
|
From: P Praneesh <ppranees@codeaurora.org>
|
|
Date: Tue, 28 Sep 2021 12:05:41 +0300
|
|
Subject: [PATCH] ath11k: Add wmi peer create conf event in wmi_tlv_event_id
|
|
|
|
When the driver sends a peer create cmd, the firmware responds with
|
|
WMI_PEER_CREATE_CONF_EVENTID to confirm the firmware received
|
|
WMI_PEER_CREATE_CMDID. Since the peer create conf event is not handled
|
|
in ath11k_wmi_tlv_op_rx, we are getting unknown event id warning prints
|
|
during peer creation.
|
|
|
|
Add WMI_PEER_CREATE_CONF_EVENTID in wmi_tlv_event_id and handle
|
|
the same as unsupported event id under wmi logs.
|
|
|
|
warning prints:
|
|
[ 4382.230817] ath11k_pci 0000:01:00.0: Unknown eventid: 0x601a
|
|
|
|
Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.4.0.1-01695-QCAHKSWPL_SILICONZ-1
|
|
|
|
Signed-off-by: P Praneesh <ppranees@codeaurora.org>
|
|
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
|
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
Link: https://lore.kernel.org/r/20210721212029.142388-9-jouni@codeaurora.org
|
|
---
|
|
drivers/net/wireless/ath/ath11k/wmi.c | 1 +
|
|
drivers/net/wireless/ath/ath11k/wmi.h | 3 +++
|
|
2 files changed, 4 insertions(+)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/wmi.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/wmi.c
|
|
@@ -7137,6 +7137,7 @@ static void ath11k_wmi_tlv_op_rx(struct
|
|
case WMI_TWT_ENABLE_EVENTID:
|
|
case WMI_TWT_DISABLE_EVENTID:
|
|
case WMI_PDEV_DMA_RING_CFG_RSP_EVENTID:
|
|
+ case WMI_PEER_CREATE_CONF_EVENTID:
|
|
ath11k_dbg(ab, ATH11K_DBG_WMI,
|
|
"ignoring unsupported event 0x%x\n", id);
|
|
break;
|
|
--- a/drivers/net/wireless/ath/ath11k/wmi.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/wmi.h
|
|
@@ -663,6 +663,9 @@ enum wmi_tlv_event_id {
|
|
WMI_PEER_RESERVED9_EVENTID,
|
|
WMI_PEER_RESERVED10_EVENTID,
|
|
WMI_PEER_OPER_MODE_CHANGE_EVENTID,
|
|
+ WMI_PEER_TX_PN_RESPONSE_EVENTID,
|
|
+ WMI_PEER_CFR_CAPTURE_EVENTID,
|
|
+ WMI_PEER_CREATE_CONF_EVENTID,
|
|
WMI_MGMT_RX_EVENTID = WMI_TLV_CMD(WMI_GRP_MGMT),
|
|
WMI_HOST_SWBA_EVENTID,
|
|
WMI_TBTTOFFSET_UPDATE_EVENTID,
|