From b0f84bed83732062193eafe917d7261f45646ed7 Mon Sep 17 00:00:00 2001 From: zhao Date: Wed, 4 Feb 2026 00:01:38 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=8B=20Sync=202026-02-04=2000:01:38?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...8-wifi-ath11k-Fix-the-WMM-param-type.patch | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 patches/ath11k/948-wifi-ath11k-Fix-the-WMM-param-type.patch diff --git a/patches/ath11k/948-wifi-ath11k-Fix-the-WMM-param-type.patch b/patches/ath11k/948-wifi-ath11k-Fix-the-WMM-param-type.patch new file mode 100644 index 0000000..df3643e --- /dev/null +++ b/patches/ath11k/948-wifi-ath11k-Fix-the-WMM-param-type.patch @@ -0,0 +1,24 @@ +From c420c1f66235b5ab4fc8d94da72bd5ae6397117f Mon Sep 17 00:00:00 2001 +From: Gautham Kumar Senthilkumaran +Date: Mon, 19 Jan 2026 11:55:51 +0100 +Subject: [PATCH] wifi: ath11k: Fix the WMM param type + +Since FW does not support the 11ax EDCA parameter in WMI TLV command. +FW was crashing as host was sending this parameter, now changed the +WMM parameter type as default zero before sending to FW. + +Fixes: b78c02f7c710 ("wifi: ath11k: add support for MU EDCA") +Signed-off-by: Gautham Kumar Senthilkumaran +Signed-off-by: Paweł Owoc + +--- a/drivers/net/wireless/ath/ath11k/wmi.c ++++ b/drivers/net/wireless/ath/ath11k/wmi.c +@@ -2682,7 +2682,7 @@ int ath11k_wmi_send_wmm_update_cmd_tlv(s + FIELD_PREP(WMI_TLV_LEN, sizeof(*cmd) - TLV_HDR_SIZE); + + cmd->vdev_id = vdev_id; +- cmd->wmm_param_type = wmm_param_type; ++ cmd->wmm_param_type = WMI_WMM_PARAM_TYPE_LEGACY; + + for (ac = 0; ac < WME_NUM_AC; ac++) { + switch (ac) {