qcacld-3.0: Fix implicit conversion of different enumeration type

Fix LLVM compilation error: implicit conversion from enumeration type
'qdf_ipa_wlan_event' to different enumeration type
'qdf_ipa_wlan_event_t'

Change-Id: Ie5f09f3e5b6f1e93d344d22483754292d370ce60
CRs-Fixed: 2216820
diff --git a/components/ipa/core/src/wlan_ipa_core.c b/components/ipa/core/src/wlan_ipa_core.c
index f9a15a4..688694b 100644
--- a/components/ipa/core/src/wlan_ipa_core.c
+++ b/components/ipa/core/src/wlan_ipa_core.c
@@ -1719,14 +1719,14 @@
 
 /**
  * wlan_host_to_ipa_wlan_event() - convert wlan_ipa_wlan_event to ipa_wlan_event
- * @wlan_ipa_event_type: IPA IPA WLAN event to be converted to an ipa_wlan_event
+ * @wlan_ipa_event_type: event to be converted to an ipa_wlan_event
  *
  * Return: qdf_ipa_wlan_event representing the wlan_ipa_wlan_event
  */
 static qdf_ipa_wlan_event
 wlan_host_to_ipa_wlan_event(enum wlan_ipa_wlan_event wlan_ipa_event_type)
 {
-	qdf_ipa_wlan_event_t ipa_event;
+	qdf_ipa_wlan_event ipa_event;
 
 	switch (wlan_ipa_event_type) {
 	case WLAN_IPA_CLIENT_CONNECT: