mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +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>
28 lines
419 B
Makefile
28 lines
419 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
host1x-y = \
|
|
bus.o \
|
|
syncpt.o \
|
|
dev.o \
|
|
intr.o \
|
|
cdma.o \
|
|
channel.o \
|
|
job.o \
|
|
debug.o \
|
|
mipi.o \
|
|
fence.o \
|
|
actmon.o \
|
|
hw/host1x01.o \
|
|
hw/host1x02.o \
|
|
hw/host1x04.o \
|
|
hw/host1x05.o \
|
|
hw/host1x06.o \
|
|
hw/host1x07.o \
|
|
hw/host1x08.o
|
|
|
|
host1x-$(CONFIG_IOMMU_API) += \
|
|
context.o
|
|
|
|
obj-m := host1x.o
|