clk: renesas: cpg-mssr: Always use readl()/writel()
authorGeert Uytterhoeven <geert+renesas@glider.be>
Wed, 21 Sep 2016 14:31:41 +0000 (16:31 +0200)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 17 Oct 2016 13:56:21 +0000 (15:56 +0200)
The Renesas CPG/MSSR driver core uses a mix of clk_readl()/clk_writel()
and readl()/writel() to access the clock registers. Settle on the
generic readl()/writel().

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/renesas/renesas-cpg-mssr.c

index e1365e7491ae02a0519ec94aaea92baa5f58d55e..a1d5b7431ec479b5ec23a054d1bc7967b88345bf 100644 (file)
@@ -146,12 +146,12 @@ static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable)
                enable ? "ON" : "OFF");
        spin_lock_irqsave(&priv->mstp_lock, flags);
 
-       value = clk_readl(priv->base + SMSTPCR(reg));
+       value = readl(priv->base + SMSTPCR(reg));
        if (enable)
                value &= ~bitmask;
        else
                value |= bitmask;
-       clk_writel(value, priv->base + SMSTPCR(reg));
+       writel(value, priv->base + SMSTPCR(reg));
 
        spin_unlock_irqrestore(&priv->mstp_lock, flags);
 
@@ -159,8 +159,7 @@ static int cpg_mstp_clock_endisable(struct clk_hw *hw, bool enable)
                return 0;
 
        for (i = 1000; i > 0; --i) {
-               if (!(clk_readl(priv->base + MSTPSR(reg)) &
-                     bitmask))
+               if (!(readl(priv->base + MSTPSR(reg)) & bitmask))
                        break;
                cpu_relax();
        }
@@ -190,7 +189,7 @@ static int cpg_mstp_clock_is_enabled(struct clk_hw *hw)
        struct cpg_mssr_priv *priv = clock->priv;
        u32 value;
 
-       value = clk_readl(priv->base + MSTPSR(clock->index / 32));
+       value = readl(priv->base + MSTPSR(clock->index / 32));
 
        return !(value & BIT(clock->index % 32));
 }