mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 11:05:11 +07:00
7ad6623a49
In OMAPDSS the DEBUG flag is set only after the OMAPDSS module is called, for which the debugging capabilities are available only after its proper initialization. As a result of which tracking of bugs prior to or during initial process becomes difficult. So, the definition of DEBUG is being moved to the corresponding Makefile. Signed-off-by: Chandrabhanu Mahapatra <cmahapatra@ti.com> Reviewed-by: Sumit Semwal <sumit.semwal@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
12 lines
541 B
Makefile
12 lines
541 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 manager-sysfs.o overlay.o overlay-sysfs.o output.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
|
|
ccflags-$(CONFIG_OMAP2_DSS_DEBUG_SUPPORT) += -DDEBUG
|