diff options
author | Jesse Taube <[email protected]> | 2023-03-14 17:10:30 -0400 |
---|---|---|
committer | Conor Dooley <[email protected]> | 2023-03-15 14:22:53 +0000 |
commit | 49f965b6fbca63904d7397ce96066fa992f401a3 (patch) | |
tree | a37f6137ed512e86e099b72c96cf7b016522f4a5 | |
parent | fe15c26ee26efa11741a7b632e9f23b01aca4cc6 (diff) |
soc: canaan: Make K210_SYSCTL depend on CLK_K210
CLK_K210 is no longer a dependency of SOC_CANAAN,
but K210_SYSCTL depends on CLK_K210. This patch makes K210_SYSCTL
depend on CLK_K210. Also fix whitespace errors.
Reported-by: Randy Dunlap <[email protected]>
Link: https://lore.kernel.org/all/[email protected]
Fixes: 3af577f9826f ("RISC-V: stop directly selecting drivers for SOC_CANAAN")
Signed-off-by: Jesse Taube <[email protected]>
Reviewed-by: Damien Le Moal <[email protected]>
Signed-off-by: Conor Dooley <[email protected]>
-rw-r--r-- | drivers/soc/canaan/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/soc/canaan/Kconfig b/drivers/soc/canaan/Kconfig index 2527cf5757ec..43ced2bf8444 100644 --- a/drivers/soc/canaan/Kconfig +++ b/drivers/soc/canaan/Kconfig @@ -3,8 +3,9 @@ config SOC_K210_SYSCTL bool "Canaan Kendryte K210 SoC system controller" depends on RISCV && SOC_CANAAN && OF + depends on COMMON_CLK_K210 default SOC_CANAAN - select PM - select MFD_SYSCON + select PM + select MFD_SYSCON help Canaan Kendryte K210 SoC system controller driver. |