Commit f72fed86 authored by Markus Elfring's avatar Markus Elfring Committed by Herbert Xu

hwrng: xgene - Delete an error message in xgene_rng_probe()

The function “platform_get_irq” can log an error already.
Thus omit a redundant message for the exception handling in the
calling function.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent b111418a
...@@ -328,10 +328,8 @@ static int xgene_rng_probe(struct platform_device *pdev) ...@@ -328,10 +328,8 @@ static int xgene_rng_probe(struct platform_device *pdev)
return PTR_ERR(ctx->csr_base); return PTR_ERR(ctx->csr_base);
rc = platform_get_irq(pdev, 0); rc = platform_get_irq(pdev, 0);
if (rc < 0) { if (rc < 0)
dev_err(&pdev->dev, "No IRQ resource\n");
return rc; return rc;
}
ctx->irq = rc; ctx->irq = rc;
dev_dbg(&pdev->dev, "APM X-Gene RNG BASE %p ALARM IRQ %d", dev_dbg(&pdev->dev, "APM X-Gene RNG BASE %p ALARM IRQ %d",
......
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