Commit 366addb0 authored by Oded Gabbay's avatar Oded Gabbay

habanalabs: use correct define for 32-bit max value

Timeout in wait for interrupt is in 32-bit variable so we need to use
the correct maximum value to compare.
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent ab5f5c30
......@@ -1924,7 +1924,7 @@ static int _hl_interrupt_wait_ioctl(struct hl_device *hdev, struct hl_ctx *ctx,
u32 completion_value;
int rc = 0;
if (timeout_us == MAX_SCHEDULE_TIMEOUT)
if (timeout_us == U32_MAX)
timeout = timeout_us;
else
timeout = usecs_to_jiffies(timeout_us);
......
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