]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
clk: meson8b: fix clk81 register address
authorJerome Brunet <jbrunet@baylibre.com>
Wed, 25 Jan 2017 10:53:06 +0000 (11:53 +0100)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 26 Jan 2017 23:54:48 +0000 (15:54 -0800)
During meson8b clock probe, clk81 register address is fixed twice.
First using the meson8b_clk_gates array, then by directly changing
meson8b_clk81 register.

As a result meson8b_clk81.reg = HHI_MPEG_CLK_CNTL + clk_base + clk_base.

Fixed by just removing the second fixup.

Fixes: e31a1900c1ff ("meson: clk: Add support for clock gates")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/meson/meson8b.c

index 3f1be46cbb33749aa1adbf9f073cfa957348f10c..888494d4fb8acb108ad40f271aa4a5d9dd709d3a 100644 (file)
@@ -607,7 +607,6 @@ static int meson8b_clkc_probe(struct platform_device *pdev)
        /* Populate the base address for the MPEG clks */
        meson8b_mpeg_clk_sel.reg = clk_base + (u32)meson8b_mpeg_clk_sel.reg;
        meson8b_mpeg_clk_div.reg = clk_base + (u32)meson8b_mpeg_clk_div.reg;
-       meson8b_clk81.reg = clk_base + (u32)meson8b_clk81.reg;
 
        /* Populate base address for gates */
        for (i = 0; i < ARRAY_SIZE(meson8b_clk_gates); i++)