mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Some of the drivers from nvidia-oot are not compatible with v6.0 kernel API and data structure. Disable those drivers to unblock the kstable-v6.0 release. Revert this patch after fixing build issues with v6.0 kernel. Bug 3767126 Signed-off-by: Shanker Donthineni <sdonthineni@nvidia.com> Change-Id: I6b1499c8e92213a3722c506cfbad66f724b6f14c Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2786883 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
8 lines
199 B
Makefile
8 lines
199 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
obj-m += drivers/
|
|
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
|
|
obj-m += sound/soc/tegra/
|
|
endif
|