mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 23:38:21 +07:00
4231c6b01a
Make drm part of host1x driver. Signed-off-by: Arto Merilainen <amerilainen@nvidia.com> Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de> Tested-by: Thierry Reding <thierry.reding@avionic-design.de> Tested-by: Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
19 lines
384 B
Makefile
19 lines
384 B
Makefile
ccflags-y = -Idrivers/gpu/host1x
|
|
|
|
host1x-y = \
|
|
syncpt.o \
|
|
dev.o \
|
|
intr.o \
|
|
cdma.o \
|
|
channel.o \
|
|
job.o \
|
|
debug.o \
|
|
hw/host1x01.o
|
|
|
|
ccflags-y += -Iinclude/drm
|
|
ccflags-$(CONFIG_DRM_TEGRA_DEBUG) += -DDEBUG
|
|
|
|
host1x-$(CONFIG_DRM_TEGRA) += drm/drm.o drm/fb.o drm/dc.o drm/host1x.o
|
|
host1x-$(CONFIG_DRM_TEGRA) += drm/output.o drm/rgb.o drm/hdmi.o
|
|
obj-$(CONFIG_TEGRA_HOST1X) += host1x.o
|