Commit 5c324a2f authored by Gilad Ben-Yossef's avatar Gilad Ben-Yossef Committed by Herbert Xu

crypto: ccree - rate limit debug print

A debug print about register status post interrupt can happen
quite often. Rate limit it to avoid cluttering the log.
Signed-off-by: default avatarGilad Ben-Yossef <gilad@benyossef.com>
Reported-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Tested-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 84f366da
...@@ -131,7 +131,7 @@ static irqreturn_t cc_isr(int irq, void *dev_id) ...@@ -131,7 +131,7 @@ static irqreturn_t cc_isr(int irq, void *dev_id)
} }
if (irr) { if (irr) {
dev_dbg(dev, "IRR includes unknown cause bits (0x%08X)\n", dev_dbg_ratelimited(dev, "IRR includes unknown cause bits (0x%08X)\n",
irr); irr);
/* Just warning */ /* Just warning */
} }
......
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