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

Commit c4fc5d6d authored by weiyongjun \(A\)'s avatar weiyongjun \(A\) Committed by Herbert Xu
Browse files

hwrng: bcm2835 - Remove redundant dev_err call in bcm2835_rng_probe()



There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: default avatarEric Anholt <eric@anholt.net>
Acked-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 60bcf265
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -158,10 +158,8 @@ static int bcm2835_rng_probe(struct platform_device *pdev)

	/* map peripheral */
	priv->base = devm_ioremap_resource(dev, r);
	if (IS_ERR(priv->base)) {
		dev_err(dev, "failed to remap rng regs");
	if (IS_ERR(priv->base))
		return PTR_ERR(priv->base);
	}

	/* Clock is optional on most platforms */
	priv->clk = devm_clk_get(dev, NULL);