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
diff --git a/core/mac/src/include/sir_params.h b/core/mac/src/include/sir_params.h
index 928a86c..621831d 100644
--- a/core/mac/src/include/sir_params.h
+++ b/core/mac/src/include/sir_params.h
@@ -705,8 +705,7 @@
 #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 */
diff --git a/core/mac/src/pe/lim/lim_process_message_queue.c b/core/mac/src/pe/lim/lim_process_message_queue.c
index bc6e195..4add411 100644
--- a/core/mac/src/pe/lim/lim_process_message_queue.c
+++ b/core/mac/src/pe/lim/lim_process_message_queue.c
@@ -1797,9 +1797,6 @@
 		/* 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;
diff --git a/core/mac/src/pe/lim/lim_utils.c b/core/mac/src/pe/lim/lim_utils.c
index e79da68..ddc3b30 100644
--- a/core/mac/src/pe/lim/lim_utils.c
+++ b/core/mac/src/pe/lim/lim_utils.c
@@ -341,8 +341,6 @@
 		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:
diff --git a/core/mac/src/sys/legacy/src/utils/src/mac_trace.c b/core/mac/src/sys/legacy/src/utils/src/mac_trace.c
index aa73f29..1e4e4aa 100644
--- a/core/mac/src/sys/legacy/src/utils/src/mac_trace.c
+++ b/core/mac/src/sys/legacy/src/utils/src/mac_trace.c
@@ -672,7 +672,6 @@
 {
 	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);