mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-19 05:24:11 +00:00
crypto: caam/qi2 - rate-limit enqueue failure prints
Avoid console being flooded with prints in case HW is too busy to accept new enqueue requests. Signed-off-by: Horia Geantă <horia.geanta@nxp.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
ac5d15b451
commit
f1657eb99e
1 changed files with 1 additions and 1 deletions
|
@ -5280,7 +5280,7 @@ int dpaa2_caam_enqueue(struct device *dev, struct caam_request *req)
|
|||
}
|
||||
|
||||
if (unlikely(err)) {
|
||||
dev_err(dev, "Error enqueuing frame: %d\n", err);
|
||||
dev_err_ratelimited(dev, "Error enqueuing frame: %d\n", err);
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue