浏览代码

qcacmn: Add OUI config for dynamic qos null tx rate feature

Add gActionOUIDisableDynamicQosNullTxRate to control FW's dynamic qos
null tx rate feature.

Some APs sometimes don't honor Qos null frames with some specific rate.
This ini will disable dynamic qos null tx rate feature for specified
APs.

Change-Id: I7f76d19be6f4714166bf5761b43c7c9c7d041308
CRs-Fixed: 3451330
Jingxiang Ge 2 年之前
父节点
当前提交
eea7147593
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      wmi/src/wmi_unified_action_oui_tlv.c

+ 4 - 1
wmi/src/wmi_unified_action_oui_tlv.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2016-2018, 2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -63,6 +63,9 @@ bool wmi_get_action_oui_id(enum action_oui_id action_id,
 	case ACTION_OUI_11BE_OUI_ALLOW:
 		*id = WMI_VENDOR_OUI_ACTION_ALLOW_11BE;
 		return true;
+	case ACTION_OUI_DISABLE_DYNAMIC_QOS_NULL_TX_RATE:
+		*id = WMI_VENDOR_OUI_ACTION_DISABLE_DYNAMIC_QOS_NULL_TX_RATE;
+		return true;
 	default:
 		return false;
 	}