mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
This change removes pre-t23x support and removing dependency on tegra-dc module for tegra-cec driver. Verification: Verified on orin-slt with basic cec tx-rx data with TV. bug 4954851 Change-Id: Ie820ba706ac5e66da282e411a4ae74bd0e6cb58b Signed-off-by: Prafull Suryawanshi <prafulls@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3264311 Reviewed-by: Shu Zhong <shuz@nvidia.com> GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: Vinod Atyam <vatyam@nvidia.com>
21 lines
640 B
Makefile
21 lines
640 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
LINUX_VERSION := $(shell expr $(VERSION) \* 256 + $(PATCHLEVEL))
|
|
LINUX_VERSION_6_11 := $(shell expr 6 \* 256 + 11)
|
|
|
|
# MODS is currently broken for Linux v6.11 and later
|
|
ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_11); echo $$?),0)
|
|
ifeq ($(findstring ack_src,$(NV_BUILD_KERNEL_OPTIONS)),)
|
|
obj-m += mods/
|
|
endif
|
|
endif
|
|
obj-m += nvsciipc/
|
|
ifdef CONFIG_PCI
|
|
obj-m += tegra-pcie-dma-test.o
|
|
endif
|
|
obj-m += bluedroid_pm.o
|
|
obj-m += nvscic2c-pcie/
|
|
obj-m += ioctl_example.o
|
|
obj-m += tegra-cec/
|