diff options
author | Lukas Bulwahn <[email protected]> | 2024-06-20 22:14:31 +0200 |
---|---|---|
committer | Bjorn Andersson <[email protected]> | 2024-06-21 00:50:09 -0500 |
commit | f8d1dca6c44dff362102b1f535b6dab552edb760 (patch) | |
tree | c3e3dfe2bd8b0f752f70f58abf49710de51dbab9 | |
parent | e429be706f2a1bd0c9a780793fff6b3784fb4204 (diff) |
clk: qcom: select right config in CLK_QCM2290_GPUCC definition
Commit 8cab033628b1 ("clk: qcom: Add QCM2290 GPU clock controller driver")
adds the config CLK_QCM2290_GPUCC, which intends to select the support for
the QCM2290 Global Clock Controller. It however selects the non-existing
config CLK_QCM2290_GCC, whereas the config for the QCM2290 Global Clock
Controller is named QCM_GCC_2290.
Adjust the config to the intended one.
Signed-off-by: Lukas Bulwahn <[email protected]>
Fixes: 8cab033628b1 ("clk: qcom: Add QCM2290 GPU clock controller driver")
Reviewed-by: Dmitry Baryshkov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r-- | drivers/clk/qcom/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index 67c9188d53cb..6810291d41a5 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -65,7 +65,7 @@ config CLK_X1E80100_TCSRCC config CLK_QCM2290_GPUCC tristate "QCM2290 Graphics Clock Controller" depends on ARM64 || COMPILE_TEST - select CLK_QCM2290_GCC + select QCM_GCC_2290 help Support for the graphics clock controller on QCM2290 devices. Say Y if you want to support graphics controller devices and |