qcacmn: Use qdf_mem_zero for zero initialization, hif part

Use qdf_mem_zero for zero initialization, hif part.

Change-Id: Iada5aa04a2bf1f04bed6a0af7ee6ba4175997025
CRs-Fixed: 2378005
diff --git a/hif/src/ce/ce_diag.c b/hif/src/ce/ce_diag.c
index 382f180..7bbb9db 100644
--- a/hif/src/ce/ce_diag.c
+++ b/hif/src/ce/ce_diag.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2015-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -223,7 +223,7 @@
 		status = QDF_STATUS_E_NOMEM;
 		goto done;
 	}
-	qdf_mem_set(data_buf, orig_nbytes, 0);
+	qdf_mem_zero(data_buf, orig_nbytes);
 	qdf_mem_dma_sync_single_for_device(scn->qdf_dev, CE_data_base,
 				       orig_nbytes, DMA_FROM_DEVICE);