Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From ac84ac819a2e8fd3d87122b452c502a386c54437 Mon Sep 17 00:00:00 2001
|
|
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
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 <ansuelsmth@gmail.com>
|
|
---
|
|
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;
|