Commit d2cfd689 authored by Oded Gabbay's avatar Oded Gabbay
Browse files

habanalabs: remove duplicate print



We print detailed messages inside the internal ioctl functions. No need
to print a generic message at the end, it doesn't add any information.

Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 930feb41
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -3126,13 +3126,8 @@ static int hl_interrupt_wait_ioctl(struct hl_fpriv *hpriv, void *data)
				args->in.interrupt_timeout_us, args->in.addr,
				args->in.target, interrupt, &status,
				&timestamp);
	if (rc) {
		if (rc != -EINTR)
			dev_err_ratelimited(hdev->dev,
				"interrupt_wait_ioctl failed (%d)\n", rc);

	if (rc)
		return rc;
	}

	memset(args, 0, sizeof(*args));
	args->out.status = status;