diff options
author | Lucas Stach <l.stach@pengutronix.de> | 2017-03-23 18:52:02 +0300 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2017-04-04 11:58:56 +0300 |
commit | 30310c835f3ebfefcf83f006981faa66d73bd810 (patch) | |
tree | 1f924f2005ed58c1f38073d88a123e4e61f95226 /drivers/gpu/ipu-v3/Makefile | |
parent | 7d5ed2920d15a8583084f7ca689a30277ef9af55 (diff) | |
download | linux-30310c835f3ebfefcf83f006981faa66d73bd810.tar.xz |
gpu: ipu-v3: don't depend on DRM being enabled
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>
Diffstat (limited to 'drivers/gpu/ipu-v3/Makefile')
-rw-r--r-- | drivers/gpu/ipu-v3/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/ipu-v3/Makefile b/drivers/gpu/ipu-v3/Makefile index 1ab9bceee755..8cdf9e4ae772 100644 --- a/drivers/gpu/ipu-v3/Makefile +++ b/drivers/gpu/ipu-v3/Makefile @@ -2,4 +2,8 @@ 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-pre.o ipu-prg.o ipu-smfc.o ipu-vdi.o + ipu-smfc.o ipu-vdi.o + +ifdef CONFIG_DRM + imx-ipu-v3-objs += ipu-pre.o ipu-prg.o +endif |