diff options
author | Adam Ford <aford173@gmail.com> | 2025-03-18 18:38:36 -0500 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-03-19 13:17:21 -0300 |
commit | 225b3a778348e28371016d076c36a49fd2565e77 (patch) | |
tree | 243fc11a6461a397d94519780bd270a3bf144c56 | |
parent | e066636eed9d5e6261758e03a2e5433c2bee7ce8 (diff) |
clk: imx: select SPL_CLK_COMPOSITE_CCF when SPL_CLK_IMX8MP
If SPL_CLK_IMX8MP is selected alone, it causes a build error.
The clock composite is required when using the clock framework, so
select it when SPL_CLK_IMX8MP is enabled. This is already being
done outside of SPL.
Signed-off-by: Adam Ford <aford173@gmail.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | drivers/clk/imx/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/Kconfig b/drivers/clk/imx/Kconfig index 56d893e0579..d17a54fb9b3 100644 --- a/drivers/clk/imx/Kconfig +++ b/drivers/clk/imx/Kconfig @@ -60,6 +60,7 @@ config SPL_CLK_IMX8MP depends on ARCH_IMX8M && SPL select SPL_CLK select SPL_CLK_CCF + select SPL_CLK_COMPOSITE_CCF help This enables SPL DM/DTS support for clock driver in i.MX8MP |