Switch clk-gate to the endianness aware accessors to allow big endian gated clocks on a per device level.
Signed-off-by: Jonas Gorski <jonas.gor...@gmail.com> --- drivers/clk/clk-gate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/clk/clk-gate.c b/drivers/clk/clk-gate.c index f05823cd9b21..0e585ac133c7 100644 --- a/drivers/clk/clk-gate.c +++ b/drivers/clk/clk-gate.c @@ -55,7 +55,7 @@ static void clk_gate_endisable(struct clk_hw *hw, int enable) if (set) reg |= BIT(gate->bit_idx); } else { - reg = clk_readl(gate->reg); + reg = clk_hw_readl(hw, gate->reg); if (set) reg |= BIT(gate->bit_idx); @@ -63,7 +63,7 @@ static void clk_gate_endisable(struct clk_hw *hw, int enable) reg &= ~BIT(gate->bit_idx); } - clk_writel(reg, gate->reg); + clk_hw_writel(hw, reg, gate->reg); if (gate->lock) spin_unlock_irqrestore(gate->lock, flags); @@ -88,7 +88,7 @@ int clk_gate_is_enabled(struct clk_hw *hw) u32 reg; struct clk_gate *gate = to_clk_gate(hw); - reg = clk_readl(gate->reg); + reg = clk_hw_readl(hw, gate->reg); /* if a set bit disables this clk, flip it before masking */ if (gate->flags & CLK_GATE_SET_TO_DISABLE) -- 2.13.2