qcacld-3.0: Remove usage of typedef for oem related structures

Remove the usage of typedef for oem data request and oem
data response data structure.

Change-Id: I94f05833baa9b6baaf2272f63a33236437a96bbf
CRs-Fixed: 1038872
diff --git a/core/hdd/src/wlan_hdd_oemdata.c b/core/hdd/src/wlan_hdd_oemdata.c
index 5e46a72..ffa0934 100644
--- a/core/hdd/src/wlan_hdd_oemdata.c
+++ b/core/hdd/src/wlan_hdd_oemdata.c
@@ -302,7 +302,7 @@
  *
  * Return: 0 for success, non zero for failure
  */
-void hdd_send_oem_data_rsp_msg(tSirOemDataRsp *oem_data_rsp)
+void hdd_send_oem_data_rsp_msg(struct oem_data_rsp *oem_data_rsp)
 {
 	struct sk_buff *skb;
 	struct nlmsghdr *nlh;
@@ -364,7 +364,7 @@
 static QDF_STATUS oem_process_data_req_msg(int oem_data_len, char *oem_data)
 {
 	hdd_adapter_t *adapter = NULL;
-	tSirOemDataReq oem_data_req;
+	struct oem_data_req oem_data_req;
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
 
 	/* for now, STA interface only */
@@ -379,7 +379,7 @@
 		return QDF_STATUS_E_FAILURE;
 	}
 
-	qdf_mem_zero(&oem_data_req, sizeof(tSirOemDataReq));
+	qdf_mem_zero(&oem_data_req, sizeof(oem_data_req));
 
 	oem_data_req.data = qdf_mem_malloc(oem_data_len);
 	if (!oem_data_req.data) {