mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
clk: amba bus: convert to clk_prepare()/clk_unprepare()
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
40d3e0f494
commit
ac3e2fa677
@ -460,9 +460,17 @@ static int amba_get_enable_pclk(struct amba_device *pcdev)
|
||||
if (IS_ERR(pclk))
|
||||
return PTR_ERR(pclk);
|
||||
|
||||
ret = clk_enable(pclk);
|
||||
if (ret)
|
||||
ret = clk_prepare(pclk);
|
||||
if (ret) {
|
||||
clk_put(pclk);
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = clk_enable(pclk);
|
||||
if (ret) {
|
||||
clk_unprepare(pclk);
|
||||
clk_put(pclk);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -472,6 +480,7 @@ static void amba_put_disable_pclk(struct amba_device *pcdev)
|
||||
struct clk *pclk = pcdev->pclk;
|
||||
|
||||
clk_disable(pclk);
|
||||
clk_unprepare(pclk);
|
||||
clk_put(pclk);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user