mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
The OOT variants of the host1x and tegra-drm drivers originally had a '-next' suffix in the name to differentiate these from the upstream versions. Now that the OOT drivers are installed under the 'updates' directory, the '-next' suffix can be dropped because 'kmod' will prioritise loading the variant in 'updates' over those built from the kernel tree. Bug 4410785 Change-Id: I29287ddb935b681a5ee8a3326428eba82715da76 Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3065465 Reviewed-by: Brad Griffis <bgriffis@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
43 lines
628 B
Makefile
43 lines
628 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
ccflags-$(CONFIG_DRM_TEGRA_DEBUG) += -DDEBUG
|
|
ccflags-y += -I$(srctree.nvidia-oot)/drivers/gpu/drm/tegra/include
|
|
ccflags-y += -I$(srctree.hwpm)/include
|
|
|
|
tegra-drm-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 \
|
|
hwpm.o \
|
|
vic.o \
|
|
nvdec.o \
|
|
nvenc.o \
|
|
nvjpg.o \
|
|
riscv.o \
|
|
util.o \
|
|
ofa.o \
|
|
virt.o
|
|
|
|
tegra-drm-y += trace.o
|
|
|
|
obj-m := tegra-drm.o
|