clk: qcom: ipq806x: Fix board clk rates
authorStephen Boyd <sboyd@codeaurora.org>
Thu, 10 Nov 2016 01:08:28 +0000 (17:08 -0800)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 10 Nov 2016 01:10:32 +0000 (17:10 -0800)
The clocks on these boards run at 25 MHz, not 19.2 and 27 like
other platforms. Unfortunately I copy/pasted from other similar
SoCs but forgot this one is different. Fix it.

Fixes: a085f877a882 ("clk: qcom: Move cxo/pxo/xo into dt files")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/qcom/gcc-ipq806x.c

index 52a7d3959875b2eee15bc75fc8398764849e8c63..28eb200d0f1ee008989e5a253811a316c6951ee9 100644 (file)
@@ -2990,11 +2990,11 @@ static int gcc_ipq806x_probe(struct platform_device *pdev)
        struct regmap *regmap;
        int ret;
 
-       ret = qcom_cc_register_board_clk(dev, "cxo_board", "cxo", 19200000);
+       ret = qcom_cc_register_board_clk(dev, "cxo_board", "cxo", 25000000);
        if (ret)
                return ret;
 
-       ret = qcom_cc_register_board_clk(dev, "pxo_board", "pxo", 27000000);
+       ret = qcom_cc_register_board_clk(dev, "pxo_board", "pxo", 25000000);
        if (ret)
                return ret;