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

Configure Feed

Select the types of activity you want to include in your feed.

clk: qcom: Remove need for clk_ignore_unused on sc8280xp

With the transition of disabling unused clocks at sync_state, rather
than late_initcall() it's now possible to drop clk_ignore_unused and
unused clock disabled once client drivers have probed. Do this on
SC8280XP.

Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Tested-by: Andrew Halaney <ahalaney@redhat.com> # sc8280xp-lenovo-thinkpad-x13s
Acked-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230113041038.4188995-1-quic_bjorande@quicinc.com

authored by

Bjorn Andersson and committed by
Bjorn Andersson
29e31415 aa055bf1

+2
+1
drivers/clk/qcom/dispcc-sc8280xp.c
··· 3199 3199 .driver = { 3200 3200 .name = "disp_cc-sc8280xp", 3201 3201 .of_match_table = disp_cc_sc8280xp_match_table, 3202 + .sync_state = clk_sync_state_disable_unused, 3202 3203 }, 3203 3204 }; 3204 3205
+1
drivers/clk/qcom/gcc-sc8280xp.c
··· 7441 7441 .driver = { 7442 7442 .name = "gcc-sc8280xp", 7443 7443 .of_match_table = gcc_sc8280xp_match_table, 7444 + .sync_state = clk_sync_state_disable_unused, 7444 7445 }, 7445 7446 }; 7446 7447