mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 09:42:19 +03:00
Several drivers fail to build with Linux v6.3 due to upstream changes in the Linux kernel. Disable this drivers until a fix is in place. Bug 4014315 Change-Id: Iddd2c1e552c92311a982ff91837cef6377a947d6 Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2867129 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Rohit Khanna <rokhanna@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
17 lines
514 B
Makefile
17 lines
514 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
LINUX_VERSION := $(shell expr $(VERSION) \* 256 + $(PATCHLEVEL))
|
|
LINUX_VERSION_6_3 := $(shell expr 6 \* 256 + 3)
|
|
|
|
obj-m += mods/
|
|
obj-m += nvsciipc/
|
|
ifdef CONFIG_PCI
|
|
obj-m += tegra-pcie-dma-test.o
|
|
endif
|
|
# bluedroid_pm is currently broken for Linux v6.3 and so skip for Linux v6.3+
|
|
ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_3); echo $$?),0)
|
|
obj-m += bluedroid_pm.o
|
|
endif
|
|
obj-m += nvscic2c-pcie/
|