Commit 4251e747 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

qed: Remove useless set memory to zero use memset()



The memory return by kzalloc() has already be set to zero, so
remove useless memset(0).

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent aa0938c6
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -2747,7 +2747,6 @@ static int qed_roce_ll2_start(struct qed_dev *cdev,
		DP_ERR(cdev, "qed roce ll2 start: failed memory allocation\n");
		return -ENOMEM;
	}
	memset(roce_ll2, 0, sizeof(*roce_ll2));
	roce_ll2->handle = QED_LL2_UNUSED_HANDLE;
	roce_ll2->cbs = params->cbs;
	roce_ll2->cb_cookie = params->cb_cookie;