qcacmn: Initial crypto service component addition

Initial crypto service component addition in object
manager and qdf error for crypto

Change-Id: I423b41cfe3cf429c29859867aaa8467b3e35cddc
这个提交包含在:
Ashok Ponnaiah
2017-03-21 14:54:16 +05:30
提交者 Sandeep Puligilla
父节点 af42303440
当前提交 d973716683
修改 3 个文件,包含 14 行新增2 行删除

查看文件

@@ -105,6 +105,7 @@
* @WLAN_UMAC_COMP_WIFI_POS: WIFI Positioning
* @WLAN_UMAC_COMP_TDLS: TDLS
* @WLAN_UMAC_COMP_ATF: Airtime Fairness
* @WLAN_UMAC_COMP_CRYPTO: CRYPTO
* @WLAN_UMAC_COMP_ID_MAX: Maximum components in UMAC
*
* This id is static.
@@ -123,6 +124,7 @@ enum wlan_umac_comp_id {
WLAN_UMAC_COMP_TDLS = 9,
WLAN_UMAC_COMP_ATF = 10,
WLAN_UMAC_COMP_REGULATORY = 11,
WLAN_UMAC_COMP_CRYPTO = 12,
WLAN_UMAC_COMP_ID_MAX,
};

查看文件

@@ -170,6 +170,7 @@ typedef void (*wlan_objmgr_peer_status_handler)(
* @WLAN_TDLS_SB_ID: TDLS Southbound operations
* @WLAN_TDLS_NB_ID: TDLS Northbound operations
* @WLAN_ATF_ID: Airtime Fairness operations
* @WLAN_CRYPTO_ID: Crypto service operation
* @WLAN_REF_ID_MAX: Max id used to generate ref count tracking array
*/
typedef enum {
@@ -191,7 +192,8 @@ typedef enum {
WLAN_P2P_ID = 15,
WLAN_TDLS_SB_ID = 16,
WLAN_TDLS_NB_ID = 17,
WLAN_ATF_ID = 19,
WLAN_ATF_ID = 18,
WLAN_CRYPTO_ID = 19,
WLAN_REF_ID_MAX,
} wlan_objmgr_ref_dbgid;