mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-19 09:04:51 +08:00
9f42a89da6
The previous code, kernel builds Hi6220's common clock driver and stub clock driver together. Stub clock driver has introduced the dependency with CONFIG_MAILBOX, so kernel will not build Hi6220's common clock driver due ARM64's defconfig have not enabled CONFIG_MAILBOX by default. So separately build stub clock driver and common clock driver for Hi6220; and only let stub clock driver has the dependency with CONFIG_MAILBOX. Signed-off-by: Leo Yan <leo.yan@linaro.org> Tested-by: Kevin Hilman <khilman@linaro.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
12 lines
322 B
Makefile
12 lines
322 B
Makefile
#
|
|
# Hisilicon Clock specific Makefile
|
|
#
|
|
|
|
obj-y += clk.o clkgate-separated.o clkdivider-hi6220.o
|
|
|
|
obj-$(CONFIG_ARCH_HI3xxx) += clk-hi3620.o
|
|
obj-$(CONFIG_ARCH_HIP04) += clk-hip04.o
|
|
obj-$(CONFIG_ARCH_HIX5HD2) += clk-hix5hd2.o
|
|
obj-$(CONFIG_COMMON_CLK_HI6220) += clk-hi6220.o
|
|
obj-$(CONFIG_STUB_CLK_HI6220) += clk-hi6220-stub.o
|