Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: qcom: ipq806x: Fix board clk rates

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>

+2 -2
+2 -2
drivers/clk/qcom/gcc-ipq806x.c
··· 2990 2990 struct regmap *regmap; 2991 2991 int ret; 2992 2992 2993 - ret = qcom_cc_register_board_clk(dev, "cxo_board", "cxo", 19200000); 2993 + ret = qcom_cc_register_board_clk(dev, "cxo_board", "cxo", 25000000); 2994 2994 if (ret) 2995 2995 return ret; 2996 2996 2997 - ret = qcom_cc_register_board_clk(dev, "pxo_board", "pxo", 27000000); 2997 + ret = qcom_cc_register_board_clk(dev, "pxo_board", "pxo", 25000000); 2998 2998 if (ret) 2999 2999 return ret; 3000 3000