From d2bc09db8d7ff6a0cdc11bfbe83a641d09b3522b Mon Sep 17 00:00:00 2001 From: dkl Date: Wed, 19 Mar 2014 16:03:26 +0800 Subject: [PATCH] clk: set gate_ops NULL temporarily for rk3288 --- drivers/clk/clk-gate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.34.1