mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 16:31:13 +00:00
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
|
From 56e5ae0116aef87273cf1812d608645b076e4f02 Mon Sep 17 00:00:00 2001
|
||
|
From: Mantas Pucka <mantas@8devices.com>
|
||
|
Date: Tue, 25 Apr 2023 12:11:49 +0300
|
||
|
Subject: [PATCH] clk: qcom: gcc-ipq6018: Use floor ops for sdcc clocks
|
||
|
|
||
|
SDCC clocks must be rounded down to avoid overclocking the controller.
|
||
|
|
||
|
Fixes: d9db07f088af ("clk: qcom: Add ipq6018 Global Clock Controller support")
|
||
|
Signed-off-by: Mantas Pucka <mantas@8devices.com>
|
||
|
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
|
||
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
||
|
Link: https://lore.kernel.org/r/1682413909-24927-1-git-send-email-mantas@8devices.com
|
||
|
---
|
||
|
drivers/clk/qcom/gcc-ipq6018.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/clk/qcom/gcc-ipq6018.c
|
||
|
+++ b/drivers/clk/qcom/gcc-ipq6018.c
|
||
|
@@ -1702,7 +1702,7 @@ static struct clk_rcg2 usb0_mock_utmi_cl
|
||
|
.name = "usb0_mock_utmi_clk_src",
|
||
|
.parent_data = gcc_xo_gpll6_gpll0_gpll0_out_main_div2,
|
||
|
.num_parents = 4,
|
||
|
- .ops = &clk_rcg2_ops,
|
||
|
+ .ops = &clk_rcg2_floor_ops,
|
||
|
},
|
||
|
};
|
||
|
|