qcacld-3.0: Replace tSirMacAddr with cdf_mac_addr in sSirDelts Req/Rsp

Replace tSirMacAddr with cdf_mac_addr in struct sSirDelts Req/Rsp.

Change-Id: I66f2b191b1eb823d395f70fc2c66697b377c7482
CRs-Fixed: 898864
diff --git a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
index 75d1d50..1af8bad 100644
--- a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
+++ b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c
@@ -1783,8 +1783,7 @@
 	if (psessionEntry != NULL) {
 
 		rsp->aid = delts->aid;
-		cdf_mem_copy((uint8_t *) &rsp->macAddr[0],
-			     (uint8_t *) &delts->macAddr[0], 6);
+		cdf_copy_macaddr(&rsp->macaddr, &delts->macaddr);
 		cdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) &delts->req,
 			     sizeof(tSirDeltsReqInfo));
 	}