Commit e653810f authored by Andi Shyti's avatar Andi Shyti Committed by Wolfram Sang
Browse files

i2c: nomadik: Use dev_err_probe() whenever possible



Make use of dev_err_probe() in order to simplify the code and
avoid printing when returning EPROBE_DEFER.

Signed-off-by: default avatarAndi Shyti <andi.shyti@kernel.org>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent 9c7174db
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -1000,16 +1000,14 @@ static int nmk_i2c_probe(struct amba_device *adev, const struct amba_id *id)
	dev->irq = adev->irq[0];
	ret = devm_request_irq(&adev->dev, dev->irq, i2c_irq_handler, 0,
				DRIVER_NAME, dev);
	if (ret) {
		dev_err(&adev->dev, "cannot claim the irq %d\n", dev->irq);
		return ret;
	}
	if (ret)
		return dev_err_probe(&adev->dev, ret,
				     "cannot claim the irq %d\n", dev->irq);

	dev->clk = devm_clk_get_enabled(&adev->dev, NULL);
	if (IS_ERR(dev->clk)) {
		dev_err(&adev->dev, "could enable i2c clock\n");
		return PTR_ERR(dev->clk);
	}
	if (IS_ERR(dev->clk))
		return dev_err_probe(&adev->dev, PTR_ERR(dev->clk),
				     "could enable i2c clock\n");

	init_hw(dev);