mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
f4c36ab6ee
i.MX8MN has similar architecture with i.MX8MM, so it could reuse the clock code of i.MX8MM, but i.MX8MN has different CCM root configurations, so need a separate root entry. Signed-off-by: Peng Fan <peng.fan@nxp.com>
8 lines
208 B
Makefile
8 lines
208 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2017 NXP
|
|
|
|
obj-y += lowlevel_init.o
|
|
obj-y += clock_slice.o soc.o
|
|
obj-$(CONFIG_IMX8MQ) += clock_imx8mq.o
|
|
obj-$(CONFIG_IMX8MM)$(CONFIG_IMX8MN) += clock_imx8mm.o
|