From 386ea3bd8eae577cf463ef79bd354cf14e1f50d0 Mon Sep 17 00:00:00 2001 From: Lukas Bulwahn Date: Mon, 16 Aug 2021 15:59:30 +0200 Subject: clk: qcom: adjust selects for SM_VIDEOCC_8150 and SM_VIDEOCC_8250 Commit 5658e8cf1a8a ("clk: qcom: add video clock controller driver for SM8150") and commit 0e94711a1f29 ("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 Link: https://lore.kernel.org/r/20210816135930.11810-1-lukas.bulwahn@gmail.com Signed-off-by: Stephen Boyd --- drivers/clk/qcom/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/clk') diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index 8a62592e78aa..ce5a8e9d9d4d 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -603,7 +603,7 @@ config SM_GPUCC_8250 config SM_VIDEOCC_8150 tristate "SM8150 Video Clock Controller" - select SDM_GCC_8150 + select SM_GCC_8150 select QCOM_GDSC help Support for the video clock controller on SM8150 devices. @@ -612,7 +612,7 @@ config SM_VIDEOCC_8150 config SM_VIDEOCC_8250 tristate "SM8250 Video Clock Controller" - select SDM_GCC_8250 + select SM_GCC_8250 select QCOM_GDSC help Support for the video clock controller on SM8250 devices. -- cgit v1.2.3-59-g8ed1b