mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
fpga: zynq-fpga: Fix unbalanced clock handling
This commit fixes the unbalanced clock handling, where a failed probe would leave the clock with an enable count of -1. Reported-by: Josh Cartwright <joshc@ni.com> Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
525d12f27b
commit
6376931bab
@ -487,7 +487,7 @@ static int zynq_fpga_probe(struct platform_device *pdev)
|
||||
&zynq_fpga_ops, priv);
|
||||
if (err) {
|
||||
dev_err(dev, "unable to register FPGA manager");
|
||||
clk_disable_unprepare(priv->clk);
|
||||
clk_unprepare(priv->clk);
|
||||
return err;
|
||||
}
|
||||
|
||||
@ -502,7 +502,7 @@ static int zynq_fpga_remove(struct platform_device *pdev)
|
||||
|
||||
priv = platform_get_drvdata(pdev);
|
||||
|
||||
clk_disable_unprepare(priv->clk);
|
||||
clk_unprepare(priv->clk);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user