mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
30310c835f
The PRE/PRG drivers, which need the DRM infrastructure, are only used from the output path, so we skip building them into the ipu-v3 driver if CONFIG_DRM is not enabled. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
10 lines
260 B
Makefile
10 lines
260 B
Makefile
obj-$(CONFIG_IMX_IPUV3_CORE) += imx-ipu-v3.o
|
|
|
|
imx-ipu-v3-objs := ipu-common.o ipu-cpmem.o ipu-csi.o ipu-dc.o ipu-di.o \
|
|
ipu-dp.o ipu-dmfc.o ipu-ic.o ipu-image-convert.o \
|
|
ipu-smfc.o ipu-vdi.o
|
|
|
|
ifdef CONFIG_DRM
|
|
imx-ipu-v3-objs += ipu-pre.o ipu-prg.o
|
|
endif
|