forked from Minki/linux
gpio: davinci: Convert prinkt to dev_err
In case of devm_clk_get failure use dev_err instead of printk Signed-off-by: Keerthy <j-keerthy@ti.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
8327e1ba12
commit
1a9ef909ac
@ -487,8 +487,7 @@ static int davinci_gpio_irq_setup(struct platform_device *pdev)
|
|||||||
|
|
||||||
clk = devm_clk_get(dev, "gpio");
|
clk = devm_clk_get(dev, "gpio");
|
||||||
if (IS_ERR(clk)) {
|
if (IS_ERR(clk)) {
|
||||||
printk(KERN_ERR "Error %ld getting gpio clock?\n",
|
dev_err(dev, "Error %ld getting gpio clock\n", PTR_ERR(clk));
|
||||||
PTR_ERR(clk));
|
|
||||||
return PTR_ERR(clk);
|
return PTR_ERR(clk);
|
||||||
}
|
}
|
||||||
ret = clk_prepare_enable(clk);
|
ret = clk_prepare_enable(clk);
|
||||||
|
Loading…
Reference in New Issue
Block a user