qcacld-3.0: Create same call signature for WIN and MCL

In wmi_process_fw_event_default_ctx, Use same call
signature for MCL as WIN for wma_process_fw_event_handler

Change-Id: Ie361dd762c97667f4ee5bc3bb67fd0d39fbcae94
CRS-Fixed: 2372982
diff --git a/core/wma/inc/wma.h b/core/wma/inc/wma.h
index 1aa684a..2940ac5 100644
--- a/core/wma/inc/wma.h
+++ b/core/wma/inc/wma.h
@@ -1667,7 +1667,17 @@
 	void *evt_buf;
 } wma_process_fw_event_params;
 
-int wma_process_fw_event_handler(void *ctx, void *ev, uint8_t rx_ctx);
+/**
+ * wma_process_fw_event_handler() - common event handler to serialize
+ *                                  event processing through mc_thread
+ * @scn_handle: scn handle
+ * @ev: event buffer
+ * @rx_ctx: rx execution context
+ *
+ * Return: 0 on success, errno on failure
+ */
+int wma_process_fw_event_handler(ol_scn_t scn_handle, void *ev,
+				 uint8_t rx_ctx);
 
 A_UINT32 e_csr_auth_type_to_rsn_authmode(eCsrAuthType authtype,
 					 eCsrEncryptionType encr);