From: Tom Rini Date: Fri, 12 Dec 2025 21:19:41 +0000 (-0600) Subject: Merge patch series "clk: ti: Cleanup common functions and omap-cm" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4b50e75014249242a99a58d5024d575e1c95c2f;p=thirdparty%2Fu-boot.git Merge patch series "clk: ti: Cleanup common functions and omap-cm" Markus Schneider-Pargmann (TI.com) says: This series cleans up the direct dependency of ARCH_OMAP2PLUS to compile ti/clk.c which holds common functions for other clock drivers. It creates its own config symbols for these common functions and for the omap-cm driver as well. The omap-cm driver config symbol is added as default enabled. Link: https://lore.kernel.org/r/20251128-topic-am33-clk-regmap-dep-v2026-01-v2-0-451b4f4e7e85@baylibre.com/ --- f4b50e75014249242a99a58d5024d575e1c95c2f diff --cc drivers/clk/ti/Kconfig index 34fba089992,9517363ebb3..3b995ab8f47 --- a/drivers/clk/ti/Kconfig +++ b/drivers/clk/ti/Kconfig @@@ -18,19 -33,22 +33,22 @@@ config CLK_TI_CTR config CLK_TI_DIVIDER bool "TI divider clock driver" - depends on CLK && OF_CONTROL && CLK_CCF + depends on CLK && OF_CONTROL && CLK_CCF && ARCH_OMAP2PLUS + select CLK_TI_OMAP2PLUS help This enables the divider clock driver support on TI's SoCs. config CLK_TI_GATE bool "TI gate clock driver" - depends on CLK && OF_CONTROL + depends on CLK && OF_CONTROL && ARCH_OMAP2PLUS + select CLK_TI_OMAP2PLUS help This enables the gate clock driver support on TI's SoCs. config CLK_TI_MUX bool "TI mux clock driver" - depends on CLK && OF_CONTROL && CLK_CCF + depends on CLK && OF_CONTROL && CLK_CCF && ARCH_OMAP2PLUS + select CLK_TI_OMAP2PLUS help This enables the mux clock driver support on TI's SoCs.