mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
156fd99e92
The current venc.c driver contains both the interface and panel driver code. This makes the driver hard to read, and difficult to understand the work split between the interface and panel driver and the how the locking works. This also makes it easier to clearly define the VENC interface ops called by the panel driver. Split venc.c into venc.c and venc_panel.c representing the interface and panel driver respectively. This split is done along the lines of the HDMI interface and panel drivers. Signed-off-by: Archit Taneja <archit@ti.com>
11 lines
447 B
Makefile
11 lines
447 B
Makefile
obj-$(CONFIG_OMAP2_DSS) += omapdss.o
|
|
omapdss-y := core.o dss.o dss_features.o dispc.o dispc_coefs.o display.o \
|
|
manager.o overlay.o apply.o
|
|
omapdss-$(CONFIG_OMAP2_DSS_DPI) += dpi.o
|
|
omapdss-$(CONFIG_OMAP2_DSS_RFBI) += rfbi.o
|
|
omapdss-$(CONFIG_OMAP2_DSS_VENC) += venc.o venc_panel.o
|
|
omapdss-$(CONFIG_OMAP2_DSS_SDI) += sdi.o
|
|
omapdss-$(CONFIG_OMAP2_DSS_DSI) += dsi.o
|
|
omapdss-$(CONFIG_OMAP4_DSS_HDMI) += hdmi.o \
|
|
hdmi_panel.o ti_hdmi_4xxx_ip.o
|