qcacld-3.0: Remove unused LIM_MLM_REASSOC_REQ
Remove message LIM_MLM_REASSOC_REQ. lim_post_mlm_message is calling the API lim_process_mlm_req_messages and not posting. So, in the Ieefbcf0a28867be3c8a86d9a912143857c54fe06 LIM_MLM_REASSOC_REQ is replaced by directly calling the API. Change-Id: Id8c4460058ebca7e12daa1a60afaa578b8aa5cc2 CRs-Fixed: 2396477
This commit is contained in:

committed by
nshrivas

parent
dbddc3de44
commit
e40b310cd3
@@ -120,9 +120,6 @@ void lim_process_mlm_req_messages(struct mac_context *mac_ctx,
|
||||
case LIM_MLM_ASSOC_REQ:
|
||||
lim_process_mlm_assoc_req(mac_ctx, msg->bodyptr);
|
||||
break;
|
||||
case LIM_MLM_REASSOC_REQ:
|
||||
lim_process_mlm_reassoc_req(mac_ctx, msg->bodyptr);
|
||||
break;
|
||||
case LIM_MLM_DISASSOC_REQ:
|
||||
lim_process_mlm_disassoc_req(mac_ctx, msg->bodyptr);
|
||||
break;
|
||||
|
@@ -66,17 +66,16 @@
|
||||
#define LIM_MLM_DISASSOC_REQ (LIM_MLM_MSG_START + 12)
|
||||
#define LIM_MLM_DISASSOC_CNF (LIM_MLM_MSG_START + 13)
|
||||
#define LIM_MLM_DISASSOC_IND (LIM_MLM_MSG_START + 14)
|
||||
#define LIM_MLM_REASSOC_REQ (LIM_MLM_MSG_START + 15)
|
||||
#define LIM_MLM_REASSOC_CNF (LIM_MLM_MSG_START + 16)
|
||||
#define LIM_MLM_REASSOC_IND (LIM_MLM_MSG_START + 17)
|
||||
#define LIM_MLM_DEAUTH_REQ (LIM_MLM_MSG_START + 18)
|
||||
#define LIM_MLM_DEAUTH_CNF (LIM_MLM_MSG_START + 19)
|
||||
#define LIM_MLM_DEAUTH_IND (LIM_MLM_MSG_START + 20)
|
||||
#define LIM_MLM_TSPEC_REQ (LIM_MLM_MSG_START + 21)
|
||||
#define LIM_MLM_TSPEC_CNF (LIM_MLM_MSG_START + 22)
|
||||
#define LIM_MLM_TSPEC_IND (LIM_MLM_MSG_START + 23)
|
||||
#define LIM_MLM_SETKEYS_REQ (LIM_MLM_MSG_START + 24)
|
||||
#define LIM_MLM_SETKEYS_CNF (LIM_MLM_MSG_START + 25)
|
||||
#define LIM_MLM_REASSOC_CNF (LIM_MLM_MSG_START + 15)
|
||||
#define LIM_MLM_REASSOC_IND (LIM_MLM_MSG_START + 16)
|
||||
#define LIM_MLM_DEAUTH_REQ (LIM_MLM_MSG_START + 17)
|
||||
#define LIM_MLM_DEAUTH_CNF (LIM_MLM_MSG_START + 18)
|
||||
#define LIM_MLM_DEAUTH_IND (LIM_MLM_MSG_START + 19)
|
||||
#define LIM_MLM_TSPEC_REQ (LIM_MLM_MSG_START + 20)
|
||||
#define LIM_MLM_TSPEC_CNF (LIM_MLM_MSG_START + 21)
|
||||
#define LIM_MLM_TSPEC_IND (LIM_MLM_MSG_START + 22)
|
||||
#define LIM_MLM_SETKEYS_REQ (LIM_MLM_MSG_START + 23)
|
||||
#define LIM_MLM_SETKEYS_CNF (LIM_MLM_MSG_START + 24)
|
||||
#define LIM_MLM_LINK_TEST_STOP_REQ (LIM_MLM_MSG_START + 30)
|
||||
#define LIM_MLM_PURGE_STA_IND (LIM_MLM_MSG_START + 31)
|
||||
/*
|
||||
|
@@ -699,7 +699,6 @@ uint8_t *mac_trace_get_lim_msg_string(uint16_t lim_msg)
|
||||
CASE_RETURN_STRING(LIM_MLM_DISASSOC_REQ);
|
||||
CASE_RETURN_STRING(LIM_MLM_DISASSOC_CNF);
|
||||
CASE_RETURN_STRING(LIM_MLM_DISASSOC_IND);
|
||||
CASE_RETURN_STRING(LIM_MLM_REASSOC_REQ);
|
||||
CASE_RETURN_STRING(LIM_MLM_REASSOC_CNF);
|
||||
CASE_RETURN_STRING(LIM_MLM_REASSOC_IND);
|
||||
CASE_RETURN_STRING(LIM_MLM_DEAUTH_REQ);
|
||||
|
Reference in New Issue
Block a user