Skip to content

Commit 386ea3b

Browse files
bulwahnbebarino
authored andcommitted
clk: qcom: adjust selects for SM_VIDEOCC_8150 and SM_VIDEOCC_8250
Commit 5658e8c ("clk: qcom: add video clock controller driver for SM8150") and commit 0e94711 ("clk: qcom: add video clock controller driver for SM8250") add config SM_VIDEOCC_8150 and config SM_VIDEOCC_8250, which select the non-existing configs SDM_GCC_8150 and SDM_GCC_8250, respectively. Hence, ./scripts/checkkconfigsymbols.py warns: SDM_GCC_8150 Referencing files: drivers/clk/qcom/Kconfig SDM_GCC_8250 Referencing files: drivers/clk/qcom/Kconfig It is probably just a typo (or naming confusion of using SM_GCC_xxx and SDM_GCC_xxx for various Qualcomm clock drivers) in the config definitions for config SM_VIDEOCC_8150 and SM_VIDEOCC_8250, and intends to select the existing SM_GCC_8150 and SM_GCC_8250, respectively. Adjust the selects to the existing configs. Signed-off-by: Lukas Bulwahn <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent cbe63bf commit 386ea3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/clk/qcom/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ config SM_GPUCC_8250
603603

604604
config SM_VIDEOCC_8150
605605
tristate "SM8150 Video Clock Controller"
606-
select SDM_GCC_8150
606+
select SM_GCC_8150
607607
select QCOM_GDSC
608608
help
609609
Support for the video clock controller on SM8150 devices.
@@ -612,7 +612,7 @@ config SM_VIDEOCC_8150
612612

613613
config SM_VIDEOCC_8250
614614
tristate "SM8250 Video Clock Controller"
615-
select SDM_GCC_8250
615+
select SM_GCC_8250
616616
select QCOM_GDSC
617617
help
618618
Support for the video clock controller on SM8250 devices.

0 commit comments

Comments
 (0)