Skip to content

Commit 7510e80

Browse files
Kathiravan Tandersson
authored andcommitted
clk: qcom: ipq5332: fix the order of SLEEP_CLK and XO clock
The order of DT_SLEEP_CLK and DT_XO are swapped and it is incorrect. Due to which the clocks for which the parent should be XO is having parent as SLEEP_CLK and vice versa. So fix the same by re-ordering the entries. Fixes: 3d89d52 ("clk: qcom: add Global Clock controller (GCC) driver for IPQ5332 SoC") Reported-by: Devi Priya <quic_devipriy@quicinc.com> Signed-off-by: Kathiravan T <quic_kathirav@quicinc.com> Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Signed-off-by: Bjorn Andersson <andersson@kernel.org> Link: https://lore.kernel.org/r/20230417105607.4091-1-quic_kathirav@quicinc.com
1 parent 81c1ef8 commit 7510e80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/qcom/gcc-ipq5332.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include "reset.h"
2121

2222
enum {
23-
DT_SLEEP_CLK,
2423
DT_XO,
24+
DT_SLEEP_CLK,
2525
DT_PCIE_2LANE_PHY_PIPE_CLK,
2626
DT_PCIE_2LANE_PHY_PIPE_CLK_X1,
2727
DT_USB_PCIE_WRAPPER_PIPE_CLK,

0 commit comments

Comments
 (0)