mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
pinctrl: sunxi: check clk_prepare_enable return value
Check the clk_prepare_enable return value to avoid false positive probe. Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
3b02dad20f
commit
6415093f7f
@ -884,7 +884,9 @@ static int sunxi_pinctrl_probe(struct platform_device *pdev)
|
||||
goto gpiochip_error;
|
||||
}
|
||||
|
||||
clk_prepare_enable(clk);
|
||||
ret = clk_prepare_enable(clk);
|
||||
if (ret)
|
||||
goto gpiochip_error;
|
||||
|
||||
pctl->irq = irq_of_parse_and_map(node, 0);
|
||||
if (!pctl->irq) {
|
||||
|
Loading…
Reference in New Issue
Block a user