浏览代码

qcacmn: Use qdf_mem_zero for zero initialization, global_lmac_if part

Use qdf_mem_zero for zero initialization, global_lmac_if part.

Change-Id: I4780a5127b4033e922b81f3eab7b94585d374679
CRs-Fixed: 2378005
hangtian 6 年之前
父节点
当前提交
da7eed1532
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      global_lmac_if/src/wlan_global_lmac_if.c

+ 3 - 3
global_lmac_if/src/wlan_global_lmac_if.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
  *
  *
  * Permission to use, copy, modify, and/or distribute this software for
@@ -150,8 +150,8 @@ qdf_export_symbol(wlan_global_lmac_if_open);
  */
 QDF_STATUS wlan_global_lmac_if_close(struct wlan_objmgr_psoc *psoc)
 {
-	qdf_mem_set(&psoc->soc_cb.tx_ops, sizeof(psoc->soc_cb.tx_ops), 0);
-	qdf_mem_set(&psoc->soc_cb.rx_ops, sizeof(psoc->soc_cb.rx_ops), 0);
+	qdf_mem_zero(&psoc->soc_cb.tx_ops, sizeof(psoc->soc_cb.tx_ops));
+	qdf_mem_zero(&psoc->soc_cb.rx_ops, sizeof(psoc->soc_cb.rx_ops));
 
 	return QDF_STATUS_SUCCESS;
 }