Commit 977d53a6 authored by Oded Gabbay's avatar Oded Gabbay

habanalabs: initialize variable before use

GCC 7.3.1 20180303 (Red Hat 7.3.1-5) complains that collective_engine_id
might be used uninitialized.
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 71a984f9
......@@ -941,7 +941,7 @@ static int cs_ioctl_signal_wait(struct hl_fpriv *hpriv, enum hl_cs_type cs_type,
struct hl_cs_compl *sig_waitcs_cmpl;
struct hl_cs *cs;
enum hl_queue_type q_type;
u32 size_to_copy, q_idx, collective_engine_id;
u32 size_to_copy, q_idx, collective_engine_id = 0;
u64 signal_seq;
int rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment