mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-12 16:40:42 +09:00
clk: set gate_ops NULL temporarily for rk3288
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user