qcacmn: Add pre cac component support params

Add component id, module id and debug id for
pre cac component.

Change-Id: I2abee4b8a48c816d50d04451bbf97a2188d37b54
CRs-Fixed: 3176256
This commit is contained in:
Dundi Raviteja
2022-04-08 13:08:33 +05:30
committed by Madan Koyyalamudi
parent 4c3d1cbd29
commit e04b80efc6
4 changed files with 11 additions and 1 deletions

View File

@@ -286,6 +286,7 @@ typedef void (*wlan_objmgr_peer_status_handler)(
* @WLAN_MGMT_RX_REO_ID: Management rx reorder reference id
* @WLAN_MGMT_RX_REO_SIM_ID: Management rx reorder simulation reference id
* @WLAN_LITE_MON_ID: Lite monitor operations
* @WLAN_PRE_CAC_ID: Pre-CAC operations
* @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
@@ -389,6 +390,7 @@ typedef enum {
WLAN_MGMT_RX_REO_SIM_ID = 93,
WLAN_TWT_ID = 94,
WLAN_LITE_MON_ID = 95,
WLAN_PRE_CAC_ID = 96,
WLAN_REF_ID_MAX,
} wlan_objmgr_ref_dbgid;
@@ -496,7 +498,9 @@ static inline const char *string_from_dbgid(wlan_objmgr_ref_dbgid id)
"WLAN_MBSS_ID",
"WLAN_MGMT_RX_REO_ID",
"WLAN_MGMT_RX_REO_SIM_ID",
"WLAN_TWT_ID"
"WLAN_TWT_ID",
"WLAN_LITE_MON_ID",
"WLAN_PRE_CAC_ID"
};
if (id >= WLAN_REF_ID_MAX)