mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
ce1d86dc92
Add support for the clocks provided by the CGU in the Ingenic X1830 SoC, making use of the cgu code to do the heavy lifting. Signed-off-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com> Reviewed-by: Paul Cercueil <paul@crapouillou.net> Link: https://lkml.kernel.org/r/20200528031549.13846-6-zhouyanjie@wanyeetech.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
10 lines
421 B
Makefile
10 lines
421 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_INGENIC_CGU_COMMON) += cgu.o pm.o
|
|
obj-$(CONFIG_INGENIC_CGU_JZ4740) += jz4740-cgu.o
|
|
obj-$(CONFIG_INGENIC_CGU_JZ4725B) += jz4725b-cgu.o
|
|
obj-$(CONFIG_INGENIC_CGU_JZ4770) += jz4770-cgu.o
|
|
obj-$(CONFIG_INGENIC_CGU_JZ4780) += jz4780-cgu.o
|
|
obj-$(CONFIG_INGENIC_CGU_X1000) += x1000-cgu.o
|
|
obj-$(CONFIG_INGENIC_CGU_X1830) += x1830-cgu.o
|
|
obj-$(CONFIG_INGENIC_TCU_CLK) += tcu.o
|