提交 1d144c67 编写于 作者: L Lukasz Majewski 提交者: Felipe Balbi

usb:hsotg:samsung: err_irq: support for probe function

Missing handler for freeing requested IRQ added.
Moreover clk_ calls has been reorganized.
Signed-off-by: NLukasz Majewski <l.majewski@samsung.com>
Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: NFelipe Balbi <balbi@ti.com>
上级 04b4a0fc
...@@ -3558,7 +3558,7 @@ static int __devinit s3c_hsotg_probe(struct platform_device *pdev) ...@@ -3558,7 +3558,7 @@ static int __devinit s3c_hsotg_probe(struct platform_device *pdev)
hsotg->supplies); hsotg->supplies);
if (ret) { if (ret) {
dev_err(dev, "failed to request supplies: %d\n", ret); dev_err(dev, "failed to request supplies: %d\n", ret);
goto err_supplies; goto err_irq;
} }
ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies), ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
...@@ -3637,17 +3637,13 @@ static int __devinit s3c_hsotg_probe(struct platform_device *pdev) ...@@ -3637,17 +3637,13 @@ static int __devinit s3c_hsotg_probe(struct platform_device *pdev)
return 0; return 0;
err_ep_mem: err_ep_mem:
kfree(eps); kfree(eps);
err_supplies: err_supplies:
s3c_hsotg_phy_disable(hsotg); s3c_hsotg_phy_disable(hsotg);
regulator_bulk_free(ARRAY_SIZE(hsotg->supplies), hsotg->supplies); regulator_bulk_free(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
err_irq:
clk_disable_unprepare(hsotg->clk); free_irq(hsotg->irq, hsotg);
clk_put(hsotg->clk);
err_regs: err_regs:
iounmap(hsotg->regs); iounmap(hsotg->regs);
...@@ -3655,6 +3651,7 @@ static int __devinit s3c_hsotg_probe(struct platform_device *pdev) ...@@ -3655,6 +3651,7 @@ static int __devinit s3c_hsotg_probe(struct platform_device *pdev)
release_resource(hsotg->regs_res); release_resource(hsotg->regs_res);
kfree(hsotg->regs_res); kfree(hsotg->regs_res);
err_clk: err_clk:
clk_disable_unprepare(hsotg->clk);
clk_put(hsotg->clk); clk_put(hsotg->clk);
err_mem: err_mem:
kfree(hsotg); kfree(hsotg);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册