mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
The required headers for drm driver are already included in the master makefile. Hence, it is not required to add include path explicitly. Bug 4087103 Change-Id: If3cf11e333fb07498329c935072904dae652bf9f Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2894611 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
41 lines
594 B
Makefile
41 lines
594 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
ccflags-$(CONFIG_DRM_TEGRA_DEBUG) += -DDEBUG
|
|
ccflags-y += -I$(srctree.nvidia-oot)/drivers/gpu/drm/tegra/include
|
|
|
|
tegra-drm-next-y := \
|
|
drm.o \
|
|
uapi.o \
|
|
submit.o \
|
|
firewall.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 \
|
|
nvdec.o \
|
|
nvenc.o \
|
|
nvjpg.o \
|
|
riscv.o \
|
|
util.o \
|
|
ofa.o \
|
|
virt.o
|
|
|
|
tegra-drm-next-y += trace.o
|
|
|
|
obj-m := tegra-drm-next.o
|