diff --git a/target_if/dp/src/target_if_dp.c b/target_if/dp/src/target_if_dp.c index 484d17abf8..b0a24a7ece 100644 --- a/target_if/dp/src/target_if_dp.c +++ b/target_if/dp/src/target_if_dp.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 The Linux Foundation. All rights reserved. + * Copyright (c) 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 @@ -40,7 +40,7 @@ target_if_peer_set_default_routing(struct cdp_ctrl_objmgr_pdev *pdev, return; } - qdf_mem_set(¶m, sizeof(param), 0); + qdf_mem_zero(¶m, sizeof(param)); /* TODO: Need bit definitions for ring number and hash based routing * fields in common wmi header file diff --git a/target_if/spectral/target_if_spectral.c b/target_if/spectral/target_if_spectral.c index 83866ffe43..989e8b508f 100644 --- a/target_if/spectral/target_if_spectral.c +++ b/target_if/spectral/target_if_spectral.c @@ -110,7 +110,7 @@ target_if_send_vdev_spectral_configure_cmd(struct target_if_spectral *spectral, if (!vdev) return QDF_STATUS_E_NOENT; - qdf_mem_set(&sparam, sizeof(sparam), 0); + qdf_mem_zero(&sparam, sizeof(sparam)); sparam.vdev_id = wlan_vdev_get_id(vdev); wlan_objmgr_vdev_release_ref(vdev, WLAN_SPECTRAL_ID); @@ -171,7 +171,7 @@ target_if_send_vdev_spectral_enable_cmd(struct target_if_spectral *spectral, if (!vdev) return QDF_STATUS_E_NOENT; - qdf_mem_set(¶m, sizeof(param), 0); + qdf_mem_zero(¶m, sizeof(param)); param.vdev_id = wlan_vdev_get_id(vdev); wlan_objmgr_vdev_release_ref(vdev, WLAN_SPECTRAL_ID);