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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);