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: 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 <lukas.bulwahn@gmail.com>
Link: https://lore.kernel.org/r/20210816135930.11810-1-lukas.bulwahn@gmail.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Lukas Bulwahn and committed by
Stephen Boyd
386ea3bd cbe63bfd

+2 -2
+2 -2
drivers/clk/qcom/Kconfig
··· 603 603 604 604 config SM_VIDEOCC_8150 605 605 tristate "SM8150 Video Clock Controller" 606 - select SDM_GCC_8150 606 + select SM_GCC_8150 607 607 select QCOM_GDSC 608 608 help 609 609 Support for the video clock controller on SM8150 devices. ··· 612 612 613 613 config SM_VIDEOCC_8250 614 614 tristate "SM8250 Video Clock Controller" 615 - select SDM_GCC_8250 615 + select SM_GCC_8250 616 616 select QCOM_GDSC 617 617 help 618 618 Support for the video clock controller on SM8250 devices.