Browse Source

qcacld-3.0: Remove SIR_LIM_KEY_ID_INTERRUPT_MSG

Message id SIR_LIM_KEY_ID_INTERRUPT_MSG is obsolete, so remove it.

Change-Id: If17cee5583889b8c0d30e8b9333d0a60ad614eaa
CRs-Fixed: 2353421
Jeff Johnson 6 years ago
parent
commit
eab9c0e023

+ 1 - 2
core/mac/src/include/sir_params.h

@@ -706,8 +706,7 @@ struct sir_mgmt_msg {
 /* UNUSED                              (SIR_LIM_ITC_MSG_TYPES_BEGIN + 5) */
 /* UNUSED                              (SIR_LIM_ITC_MSG_TYPES_BEGIN + 6) */
 /* 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)
+/* UNUSED                              (SIR_LIM_ITC_MSG_TYPES_BEGIN + 8) */
 /* Message from ISR upon SP's Replay threshold reached interrupt */
 #define SIR_LIM_REPLAY_THRES_INTERRUPT_MSG (SIR_LIM_ITC_MSG_TYPES_BEGIN + 9)
 /* Message from HDD after the TD dummy packet is cleaned up */

+ 0 - 3
core/mac/src/pe/lim/lim_process_message_queue.c

@@ -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_KEY_ID_INTERRUPT_MSG:
-		/* Message from ISR upon SP's Invalid key ID interrupt */
-		break;
 	case SIR_LIM_REPLAY_THRES_INTERRUPT_MSG:
 		/* Message from ISR upon SP's Replay threshold interrupt */
 		break;

+ 0 - 2
core/mac/src/pe/lim/lim_utils.c

@@ -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_KEY_ID_INTERRUPT_MSG:
-		return "SIR_LIM_KEY_ID_INTERRUPT_MSG";
 	case SIR_LIM_REPLAY_THRES_INTERRUPT_MSG:
 		return "SIR_LIM_REPLAY_THRES_INTERRUPT_MSG";
 	case SIR_LIM_JOIN_FAIL_TIMEOUT:

+ 0 - 1
core/mac/src/sys/legacy/src/utils/src/mac_trace.c

@@ -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_KEY_ID_INTERRUPT_MSG);
 		CASE_RETURN_STRING(SIR_LIM_REPLAY_THRES_INTERRUPT_MSG);
 		CASE_RETURN_STRING(SIR_LIM_TD_DUMMY_CALLBACK_MSG);
 		CASE_RETURN_STRING(SIR_LIM_SCH_CLEAN_MSG);