12345678910111213141516171819202122232425262728293031 |
- From ac84ac819a2e8fd3d87122b452c502a386c54437 Mon Sep 17 00:00:00 2001
- From: Christian Marangi <[email protected]>
- Date: Tue, 5 Jul 2022 18:30:18 +0200
- Subject: [PATCH v2 4/4] clk: qcom: gcc-ipq806x: remove cc_register_board for
- pxo and cxo
- Now that these clock are defined as fixed clk in dts, we can drop the
- register_board_clk for cxo_board and pxo_board in gcc_ipq806x_probe.
- Signed-off-by: Christian Marangi <[email protected]>
- ---
- drivers/clk/qcom/gcc-ipq806x.c | 8 --------
- 1 file changed, 8 deletions(-)
- --- a/drivers/clk/qcom/gcc-ipq806x.c
- +++ b/drivers/clk/qcom/gcc-ipq806x.c
- @@ -3386,14 +3386,6 @@ static int gcc_ipq806x_probe(struct plat
- struct regmap *regmap;
- int ret;
-
- - 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", 25000000);
- - if (ret)
- - return ret;
- -
- if (of_machine_is_compatible("qcom,ipq8065")) {
- ubi32_core1_src_clk.freq_tbl = clk_tbl_nss_ipq8065;
- ubi32_core2_src_clk.freq_tbl = clk_tbl_nss_ipq8065;
|