qcacld-3.0: Remove SIR_LIM_INV_KEY_INTERRUPT_MSG

Message id SIR_LIM_INV_KEY_INTERRUPT_MSG is obsolete, so remove it.

Change-Id: Ifa4ccf01bef868011146276c317bdafb1b148835
CRs-Fixed: 2353420
此提交包含在:
Jeff Johnson
2018-11-17 20:19:18 -08:00
提交者 Nitesh Shrivastav
父節點 506f645fd2
當前提交 382aba7689
共有 4 個檔案被更改,包括 1 行新增8 行删除

查看文件

@@ -705,8 +705,7 @@ struct sir_mgmt_msg {
#define SIR_BB_XPORT_MGMT_MSG (SIR_LIM_ITC_MSG_TYPES_BEGIN + 4)
/* UNUSED (SIR_LIM_ITC_MSG_TYPES_BEGIN + 5) */
/* UNUSED (SIR_LIM_ITC_MSG_TYPES_BEGIN + 6) */
/* Message from ISR upon SP's Invalid session key interrupt */
#define SIR_LIM_INV_KEY_INTERRUPT_MSG (SIR_LIM_ITC_MSG_TYPES_BEGIN + 7)
/* UNUSED (SIR_LIM_ITC_MSG_TYPES_BEGIN + 7) */
/* Message from ISR upon SP's Invalid key ID interrupt */
#define SIR_LIM_KEY_ID_INTERRUPT_MSG (SIR_LIM_ITC_MSG_TYPES_BEGIN + 8)
/* Message from ISR upon SP's Replay threshold reached interrupt */

查看文件

@@ -1797,9 +1797,6 @@ static void lim_process_messages(tpAniSirGlobal mac_ctx,
/* Does not receive CNF or dummy packet */
lim_handle_cnf_wait_timeout(mac_ctx, (uint16_t) msg->bodyval);
break;
case SIR_LIM_INV_KEY_INTERRUPT_MSG:
/* Message from ISR upon SP's Invalid session key interrupt */
break;
case SIR_LIM_KEY_ID_INTERRUPT_MSG:
/* Message from ISR upon SP's Invalid key ID interrupt */
break;

查看文件

@@ -341,8 +341,6 @@ char *lim_msg_str(uint32_t msgType)
return "WMA_SUSPEND_ACTIVITY_RSP";
case SIR_BB_XPORT_MGMT_MSG:
return "SIR_BB_XPORT_MGMT_MSG";
case SIR_LIM_INV_KEY_INTERRUPT_MSG:
return "SIR_LIM_INV_KEY_INTERRUPT_MSG";
case SIR_LIM_KEY_ID_INTERRUPT_MSG:
return "SIR_LIM_KEY_ID_INTERRUPT_MSG";
case SIR_LIM_REPLAY_THRES_INTERRUPT_MSG:

查看文件

@@ -672,7 +672,6 @@ uint8_t *mac_trace_get_lim_msg_string(uint16_t lim_msg)
{
switch (lim_msg) {
CASE_RETURN_STRING(SIR_BB_XPORT_MGMT_MSG);
CASE_RETURN_STRING(SIR_LIM_INV_KEY_INTERRUPT_MSG);
CASE_RETURN_STRING(SIR_LIM_KEY_ID_INTERRUPT_MSG);
CASE_RETURN_STRING(SIR_LIM_REPLAY_THRES_INTERRUPT_MSG);
CASE_RETURN_STRING(SIR_LIM_TD_DUMMY_CALLBACK_MSG);