Browse Source

qcacmn: Add module ID for SAWF

Add a new module ID for Service Aware Wifi

CRs-Fixed: 3283808
Change-Id: Ie4020aaff84439fc2bab163583f481adba5b4109
Vivek 2 years ago
parent
commit
d6fb91fd85
1 changed files with 4 additions and 1 deletions
  1. 4 1
      umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h

+ 4 - 1
umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h

@@ -289,6 +289,7 @@ typedef void (*wlan_objmgr_peer_status_handler)(
  * @WLAN_PRE_CAC_ID:            Pre-CAC operations
  * @WLAN_DP_ID:                 DP component
  * @WLAN_COAP_ID:               Constrained Application Protocol reference id
+ * @WLAN_SAWF_ID:               Service Aware Wifi reference id
  * @WLAN_REF_ID_MAX:            Max id used to generate ref count tracking array
  */
  /* New value added to the enum must also be reflected in function
@@ -396,6 +397,7 @@ typedef enum {
 	WLAN_DP_ID            = 97,
 	WLAN_UMAC_RESET_ID    = 98,
 	WLAN_COAP_ID          = 99,
+	WLAN_SAWF_ID          = 100,
 	WLAN_REF_ID_MAX,
 } wlan_objmgr_ref_dbgid;
 
@@ -507,7 +509,8 @@ static inline const char *string_from_dbgid(wlan_objmgr_ref_dbgid id)
 					"WLAN_LITE_MON_ID",
 					"WLAN_PRE_CAC_ID",
 					"WLAN_DP_ID",
-					"WLAN_COAP_ID"
+					"WLAN_COAP_ID",
+					"WLAN_SAWF_ID"
 					};
 
 	if (id >= WLAN_REF_ID_MAX)