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: Fix sorting of SDX_GCC_65 in Makefile and Kconfig

In order to keep at least the list of `CONFIG_SM_` drivers sorted
alphabetically, SDX_GCC_65 should have been moved one line up. This in
turn makes it easier and cleaner to add the followup SM_DISPCC_6125
driver in the right place, right before SM_DISPCC_8250.

Fixes: d79afa201328 ("clk: qcom: Add SDX65 GCC support")
Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220303131812.302302-2-marijn.suijten@somainline.org

authored by

Marijn Suijten and committed by
Bjorn Andersson
620f5125 d1a16e34

+8 -8
+7 -7
drivers/clk/qcom/Kconfig
··· 574 574 Say Y if you want to use peripheral devices such as UART, 575 575 SPI, I2C, USB, SD/UFS, PCIe etc. 576 576 577 - config SM_CAMCC_8250 578 - tristate "SM8250 Camera Clock Controller" 579 - select SM_GCC_8250 580 - help 581 - Support for the camera clock controller on SM8250 devices. 582 - Say Y if you want to support camera devices and camera functionality. 583 - 584 577 config SDX_GCC_65 585 578 tristate "SDX65 Global Clock Controller" 586 579 select QCOM_GDSC ··· 581 588 Support for the global clock controller on SDX65 devices. 582 589 Say Y if you want to use peripheral devices such as UART, 583 590 SPI, I2C, USB, SD/UFS, PCIe etc. 591 + 592 + config SM_CAMCC_8250 593 + tristate "SM8250 Camera Clock Controller" 594 + select SM_GCC_8250 595 + help 596 + Support for the camera clock controller on SM8250 devices. 597 + Say Y if you want to support camera devices and camera functionality. 584 598 585 599 config SM_DISPCC_8250 586 600 tristate "SM8150 and SM8250 Display Clock Controller"
+1 -1
drivers/clk/qcom/Makefile
··· 84 84 obj-$(CONFIG_SDM_LPASSCC_845) += lpasscc-sdm845.o 85 85 obj-$(CONFIG_SDM_VIDEOCC_845) += videocc-sdm845.o 86 86 obj-$(CONFIG_SDX_GCC_55) += gcc-sdx55.o 87 - obj-$(CONFIG_SM_CAMCC_8250) += camcc-sm8250.o 88 87 obj-$(CONFIG_SDX_GCC_65) += gcc-sdx65.o 88 + obj-$(CONFIG_SM_CAMCC_8250) += camcc-sm8250.o 89 89 obj-$(CONFIG_SM_DISPCC_6350) += dispcc-sm6350.o 90 90 obj-$(CONFIG_SM_DISPCC_8250) += dispcc-sm8250.o 91 91 obj-$(CONFIG_SM_GCC_6115) += gcc-sm6115.o