diff mbox

ath10k: suppress warnings when getting wmi WDS peer event id

Message ID 1471433280-15237-1-git-send-email-mohammed@qca.qualcomm.com (mailing list archive)
State Accepted
Commit 03c41cc126c8868ef483c2480acfcd5490a844b3
Delegated to: Kalle Valo
Headers show

Commit Message

Mohammed Shafi Shajakhan Aug. 17, 2016, 11:28 a.m. UTC
From: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>

'WMI_10_4_WDS_PEER_EVENTID' is not yet handled/implemented for WDS mode,
as of nowsuppress the warning message "Unknown eventid: 36903"

Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>
---
found this issue while running ath10k WDS AP -> ath10k WDS STA UDP traffic

 drivers/net/wireless/ath/ath10k/wmi.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Kalle Valo Sept. 2, 2016, 3:50 p.m. UTC | #1
Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com> wrote:
> From: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>
> 
> 'WMI_10_4_WDS_PEER_EVENTID' is not yet handled/implemented for WDS mode,
> as of nowsuppress the warning message "Unknown eventid: 36903"
> 
> Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>

Thanks, 1 patch applied to ath-next branch of ath.git:

03c41cc126c8 ath10k: suppress warnings when getting wmi WDS peer event id
diff mbox

Patch

diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 6279ab4..a380616 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -5274,6 +5274,7 @@  static void ath10k_wmi_10_4_op_rx(struct ath10k *ar, struct sk_buff *skb)
 		break;
 	case WMI_10_4_WOW_WAKEUP_HOST_EVENTID:
 	case WMI_10_4_PEER_RATECODE_LIST_EVENTID:
+	case WMI_10_4_WDS_PEER_EVENTID:
 		ath10k_dbg(ar, ATH10K_DBG_WMI,
 			   "received event id %d not implemented\n", id);
 		break;