mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 13:46:46 +07:00
9a42c7c647
During the discussion of patches that enhance the drm_dp_link helpers it was concluded that these helpers aren't very useful to begin with. After all other drivers have been converted not to use these helpers anymore, move these helpers into the last remaining user: Tegra DRM. If at some point these helpers are deemed more widely useful, they can be moved out into the DRM DP helpers again. Signed-off-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20191021143437.1477719-14-thierry.reding@gmail.com
28 lines
346 B
Makefile
28 lines
346 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ccflags-$(CONFIG_DRM_TEGRA_DEBUG) += -DDEBUG
|
|
|
|
tegra-drm-y := \
|
|
drm.o \
|
|
gem.o \
|
|
fb.o \
|
|
dp.o \
|
|
hub.o \
|
|
plane.o \
|
|
dc.o \
|
|
output.o \
|
|
rgb.o \
|
|
hda.o \
|
|
hdmi.o \
|
|
mipi-phy.o \
|
|
dsi.o \
|
|
sor.o \
|
|
dpaux.o \
|
|
gr2d.o \
|
|
gr3d.o \
|
|
falcon.o \
|
|
vic.o
|
|
|
|
tegra-drm-y += trace.o
|
|
|
|
obj-$(CONFIG_DRM_TEGRA) += tegra-drm.o
|