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

Commit 1a9ef909 authored by Keerthy's avatar Keerthy Committed by Linus Walleij
Browse files

gpio: davinci: Convert prinkt to dev_err



In case of devm_clk_get failure use dev_err instead of printk

Signed-off-by: default avatarKeerthy <j-keerthy@ti.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 8327e1ba
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -487,8 +487,7 @@ static int davinci_gpio_irq_setup(struct platform_device *pdev)

	clk = devm_clk_get(dev, "gpio");
	if (IS_ERR(clk)) {
		printk(KERN_ERR "Error %ld getting gpio clock?\n",
		       PTR_ERR(clk));
		dev_err(dev, "Error %ld getting gpio clock\n", PTR_ERR(clk));
		return PTR_ERR(clk);
	}
	ret = clk_prepare_enable(clk);