Commit 2f149e6e authored by Nishanth Menon's avatar Nishanth Menon Committed by Stephen Boyd
Browse files

clk: keystone: Enable TISCI clocks if K3_ARCH



K3_ARCH uses TISCI for clocks as well. Enable the same
for the driver support.

Signed-off-by: default avatarNishanth Menon <nm@ti.com>
Acked-by: default avatarSantosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 5b394b2d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -73,6 +73,7 @@ obj-$(CONFIG_ARCH_HISI) += hisilicon/
obj-y					+= imgtec/
obj-$(CONFIG_ARCH_MXC)			+= imx/
obj-$(CONFIG_MACH_INGENIC)		+= ingenic/
obj-$(CONFIG_ARCH_K3)			+= keystone/
obj-$(CONFIG_ARCH_KEYSTONE)		+= keystone/
obj-$(CONFIG_MACH_LOONGSON32)		+= loongson1/
obj-y					+= mediatek/
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ config COMMON_CLK_KEYSTONE

config TI_SCI_CLK
	tristate "TI System Control Interface clock drivers"
	depends on (ARCH_KEYSTONE || COMPILE_TEST) && OF
	depends on (ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST) && OF
	depends on TI_SCI_PROTOCOL
	default ARCH_KEYSTONE
	---help---