mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-25 00:43:42 +07:00
![]() This issue can be reproduced by having a kernel config with
CONFIG_IMX_MBOX=m and CONFIG_MXC_CLK_SCU=m. It's caused by the Makefile
wanting to build clk-scu.o and clk-imx8qxp.o as different targets but
that doesn't work (e.g. MXC_CLK_SCU = y while CLK_IMX8QXP = n)
"obj-$(CONFIG_MXC_CLK_SCU) += clk-imx-scu.o clk-imx-lpcg-scu.o
clk-imx-scu-$(CONFIG_CLK_IMX8QXP) += clk-scu.o clk-imx8qxp.o"
Having MXC_CLK_SCU=y/m while CLK_IMX8QXP=n will cause a linker problem
like below:
LD [M] drivers/clk/imx/clk-imx-scu.o
arm-poky-linux-gnueabi-ld: no input files
Make MXC_CLK_SCU be un-selectable by users so it can only be selected by
the CLK_IMX8QXP option, ensuring the two symbols are built together.
Drop COMPILE_TEST too because this option isn't selectable anymore. We
can remove it from MXC_CLK_SCU because CLK_IMX8QXP selects MXC_CLK_SCU
which already has COMPILE_TEST.
Fixes:
|
||
---|---|---|
.. | ||
clk-busy.c | ||
clk-composite-7ulp.c | ||
clk-composite-8m.c | ||
clk-cpu.c | ||
clk-divider-gate.c | ||
clk-fixup-div.c | ||
clk-fixup-mux.c | ||
clk-frac-pll.c | ||
clk-gate2.c | ||
clk-gate-exclusive.c | ||
clk-imx1.c | ||
clk-imx5.c | ||
clk-imx6q.c | ||
clk-imx6sl.c | ||
clk-imx6sll.c | ||
clk-imx6sx.c | ||
clk-imx6ul.c | ||
clk-imx7d.c | ||
clk-imx7ulp.c | ||
clk-imx8mm.c | ||
clk-imx8mn.c | ||
clk-imx8mp.c | ||
clk-imx8mq.c | ||
clk-imx8qxp-lpcg.c | ||
clk-imx8qxp-lpcg.h | ||
clk-imx8qxp.c | ||
clk-imx25.c | ||
clk-imx27.c | ||
clk-imx31.c | ||
clk-imx35.c | ||
clk-lpcg-scu.c | ||
clk-pfd.c | ||
clk-pfdv2.c | ||
clk-pll14xx.c | ||
clk-pllv1.c | ||
clk-pllv2.c | ||
clk-pllv3.c | ||
clk-pllv4.c | ||
clk-scu.c | ||
clk-scu.h | ||
clk-sscg-pll.c | ||
clk-vf610.c | ||
clk.c | ||
clk.h | ||
Kconfig | ||
Makefile |