From: dkl Date: Wed, 19 Mar 2014 08:03:26 +0000 (+0800) Subject: clk: set gate_ops NULL temporarily for rk3288 X-Git-Tag: firefly_0821_release~6001^2~8 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d2bc09db8d7ff6a0cdc11bfbe83a641d09b3522b;p=firefly-linux-kernel-4.4.55.git clk: set gate_ops NULL temporarily for rk3288 --- diff --git a/drivers/clk/clk-gate.c b/drivers/clk/clk-gate.c index 790306e921c8..33adb0f5ddd4 100644 --- a/drivers/clk/clk-gate.c +++ b/drivers/clk/clk-gate.c @@ -74,14 +74,14 @@ static void clk_gate_endisable(struct clk_hw *hw, int enable) static int clk_gate_enable(struct clk_hw *hw) { - clk_gate_endisable(hw, 1); + //clk_gate_endisable(hw, 1); return 0; } static void clk_gate_disable(struct clk_hw *hw) { - clk_gate_endisable(hw, 0); + //clk_gate_endisable(hw, 0); } static int clk_gate_is_enabled(struct clk_hw *hw)