Commit 0ab4bcf0 authored by Yann Sionneau's avatar Yann Sionneau Committed by Wolfram Sang
Browse files

i2c: at91: Use dev_err_probe() instead of dev_err()



Change
if (IS_ERR(x)) { dev_err(...); return PTR_ERR(x); }
into
return dev_err_probe()

Also, return the correct error instead of hardcoding -ENODEV
This change has also the advantage of handling the -EPROBE_DEFER situation.

Signed-off-by: default avatarYann Sionneau <yann@sionneau.net>
Reviewed-by: default avatarAndi Shyti <andi.shyti@kernel.org>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent e23e6100
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -222,10 +222,9 @@ static int at91_twi_probe(struct platform_device *pdev)
	platform_set_drvdata(pdev, dev);

	dev->clk = devm_clk_get(dev->dev, NULL);
	if (IS_ERR(dev->clk)) {
		dev_err(dev->dev, "no clock defined\n");
		return -ENODEV;
	}
	if (IS_ERR(dev->clk))
		return dev_err_probe(dev->dev, PTR_ERR(dev->clk), "no clock defined\n");

	clk_prepare_enable(dev->clk);

	snprintf(dev->adapter.name, sizeof(dev->adapter.name), "AT91");