Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Nishanth Menon <nm@ti.com>
Acked-by: Santosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Nishanth Menon and committed by
Stephen Boyd
2f149e6e 5b394b2d

+2 -1
+1
drivers/clk/Makefile
··· 73 73 obj-y += imgtec/ 74 74 obj-$(CONFIG_ARCH_MXC) += imx/ 75 75 obj-$(CONFIG_MACH_INGENIC) += ingenic/ 76 + obj-$(CONFIG_ARCH_K3) += keystone/ 76 77 obj-$(CONFIG_ARCH_KEYSTONE) += keystone/ 77 78 obj-$(CONFIG_MACH_LOONGSON32) += loongson1/ 78 79 obj-y += mediatek/
+1 -1
drivers/clk/keystone/Kconfig
··· 7 7 8 8 config TI_SCI_CLK 9 9 tristate "TI System Control Interface clock drivers" 10 - depends on (ARCH_KEYSTONE || COMPILE_TEST) && OF 10 + depends on (ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST) && OF 11 11 depends on TI_SCI_PROTOCOL 12 12 default ARCH_KEYSTONE 13 13 ---help---