mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-18 16:44:27 +08:00
556f5cf956
The i.MX8MP added some blk-ctrl peripherals that don't follow the regular structure of the blk-ctrls in the previous SoCs. Add a new file for those with currently only the HSIO blk-ctrl being supported. Others will be added later on. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
10 lines
315 B
Makefile
10 lines
315 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
ifeq ($(CONFIG_ARM),y)
|
|
obj-$(CONFIG_ARCH_MXC) += soc-imx.o
|
|
endif
|
|
obj-$(CONFIG_HAVE_IMX_GPC) += gpc.o
|
|
obj-$(CONFIG_IMX_GPCV2_PM_DOMAINS) += gpcv2.o
|
|
obj-$(CONFIG_SOC_IMX8M) += soc-imx8m.o
|
|
obj-$(CONFIG_SOC_IMX8M) += imx8m-blk-ctrl.o
|
|
obj-$(CONFIG_SOC_IMX8M) += imx8mp-blk-ctrl.o
|