Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4427c8b0 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "dsp: rate limit read/write error logs"

parents 584f8171 0c1f9389
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1104,7 +1104,7 @@ static int audio_aio_async_write(struct q6audio_aio *audio,
	buf_node->token = ac->session;
	rc = q6asm_async_write(ac, &param);
	if (rc < 0)
		pr_err("%s[%pK]:failed\n", __func__, audio);
		pr_err_ratelimited("%s[%pK]:failed\n", __func__, audio);
	return rc;
}

@@ -1157,7 +1157,7 @@ static int audio_aio_async_read(struct q6audio_aio *audio,
	buf_node->token = ac->session;
	rc = q6asm_async_read(ac, &param);
	if (rc < 0)
		pr_err("%s[%pK]:failed\n", __func__, audio);
		pr_err_ratelimited("%s[%pK]:failed\n", __func__, audio);
	return rc;
}

+2 −2
Original line number Diff line number Diff line
@@ -8625,7 +8625,7 @@ int q6asm_async_write(struct audio_client *ac,
		return -EINVAL;
	}
	if (ac->apr == NULL) {
		pr_err("%s: AC APR handle NULL\n", __func__);
		pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
		return -EINVAL;
	}

@@ -8718,7 +8718,7 @@ int q6asm_async_read(struct audio_client *ac,
		return -EINVAL;
	}
	if (ac->apr == NULL) {
		pr_err("%s: AC APR handle NULL\n", __func__);
		pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
		return -EINVAL;
	}