mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 21:02:19 +00:00
6556f7f82b
The imx-drm driver was put into staging mostly for the following reasons, all of which have been addressed or superseded: - convert the irq driver to use linear irq domains - work out the device tree bindings, this lead to the common of_graph bindings being used - factor out common helper functions, this mostly resulted in the component framework and drm of_graph helpers. Before adding new fixes, and certainly before adding new features, move it into its proper place below drivers/gpu/drm. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Dave Airlie <airlied@redhat.com>
13 lines
347 B
Makefile
13 lines
347 B
Makefile
|
|
imxdrm-objs := imx-drm-core.o
|
|
|
|
obj-$(CONFIG_DRM_IMX) += imxdrm.o
|
|
|
|
obj-$(CONFIG_DRM_IMX_PARALLEL_DISPLAY) += parallel-display.o
|
|
obj-$(CONFIG_DRM_IMX_TVE) += imx-tve.o
|
|
obj-$(CONFIG_DRM_IMX_LDB) += imx-ldb.o
|
|
|
|
imx-ipuv3-crtc-objs := ipuv3-crtc.o ipuv3-plane.o
|
|
obj-$(CONFIG_DRM_IMX_IPUV3) += imx-ipuv3-crtc.o
|
|
obj-$(CONFIG_DRM_IMX_HDMI) += imx-hdmi.o
|