clk: set gate_ops NULL temporarily for rk3288

This commit is contained in:
dkl
2014-03-19 16:03:26 +08:00
parent 039158eb38
commit d2bc09db8d

View File

@@ -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)