9d87e88a389fcb37e44ce35d586aeee62ab2ee15
[openwrt/staging/chunkeey.git] / target / linux / sunxi / patches-3.14 / 220-clk-sunxi-remove-calls-to-clk_put.patch
1 From 81b745ee30dc7cd230f924f6263879f1b7ffbc0c Mon Sep 17 00:00:00 2001
2 From: Maxime Ripard <maxime.ripard@free-electrons.com>
3 Date: Thu, 13 Mar 2014 16:14:13 +0100
4 Subject: [PATCH] clk: sunxi: Remove calls to clk_put
5
6 Callers of clk_put must disable the clock first. This also means that as long
7 as the clock is enabled the driver should hold a reference to that clock.
8 Hence, the call to clk_put here are bogus and should be removed.
9
10 Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
11 ---
12 drivers/clk/sunxi/clk-sunxi.c | 8 ++------
13 1 file changed, 2 insertions(+), 6 deletions(-)
14
15 diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c
16 index 9afd8dd..a10a645 100644
17 --- a/drivers/clk/sunxi/clk-sunxi.c
18 +++ b/drivers/clk/sunxi/clk-sunxi.c
19 @@ -1325,17 +1325,13 @@ static void __init sunxi_clock_protect(void)
20
21 /* memory bus clock - sun5i+ */
22 clk = clk_get(NULL, "mbus");
23 - if (!IS_ERR(clk)) {
24 + if (!IS_ERR(clk))
25 clk_prepare_enable(clk);
26 - clk_put(clk);
27 - }
28
29 /* DDR clock - sun4i+ */
30 clk = clk_get(NULL, "pll5_ddr");
31 - if (!IS_ERR(clk)) {
32 + if (!IS_ERR(clk))
33 clk_prepare_enable(clk);
34 - clk_put(clk);
35 - }
36 }
37
38 static void __init sunxi_init_clocks(void)
39 --
40 2.0.3
41