-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/imx: merge imx-drm-core and ipuv3-crtc in one module
While it is possible to hook other CRTC implementations into imx-drm in practice there are none yet and the option to disable ipuv3-crtc support has been hidden for a long time. Now that the imx-drm-core has learned to deal with some of the specifics of IPUv3 there is a cyclic dependency between both parts. To get rid of this and to decimate the Kconfig maze a bit, simply merge both parts into one module. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
- Loading branch information
Lucas Stach
authored and
Philipp Zabel
committed
Apr 4, 2017
1 parent
30310c8
commit 3d1df96
Showing
5 changed files
with
21 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
|
||
imxdrm-objs := imx-drm-core.o | ||
imxdrm-objs := imx-drm-core.o ipuv3-crtc.o ipuv3-plane.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) += dw_hdmi-imx.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters