habanalabs: make sure variable is set before used
timestamp could be unset in both _hl_interrupt_wait_ioctl() and _hl_interrupt_wait_ioctl_user_addr() so it is better to explicitly initialize it to 0 when declaring it. Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
parent
f2d9ec872c
commit
cf008f5acb
|
@ -3345,8 +3345,8 @@ static int hl_interrupt_wait_ioctl(struct hl_fpriv *hpriv, void *data)
|
|||
struct hl_user_interrupt *interrupt;
|
||||
union hl_wait_cs_args *args = data;
|
||||
u32 status = HL_WAIT_CS_STATUS_BUSY;
|
||||
u64 timestamp = 0;
|
||||
int rc, int_idx;
|
||||
u64 timestamp;
|
||||
|
||||
prop = &hdev->asic_prop;
|
||||
|
||||
|
|
Loading…
Reference in New Issue