nvidia-oot: disable offending drivers for v6.0

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>
This commit is contained in:
Shanker Donthineni
2022-10-04 11:29:10 -05:00
committed by mobile promotions
parent ae365a0502
commit d12271255e
3 changed files with 8 additions and 0 deletions

View File

@@ -2,4 +2,6 @@
# 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

View File

@@ -3,7 +3,9 @@
LINUXINCLUDE += -I$(srctree.nvidia-oot)/include
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
obj-m += block/tegra_virt_storage/
endif
obj-m += crypto/
obj-m += devfreq/
obj-m += dma/
@@ -29,5 +31,7 @@ obj-m += thermal/
obj-m += watchdog/
obj-m += video/tegra/
obj-m += virt/tegra/
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
obj-m += media/
endif

View File

@@ -3,4 +3,6 @@
obj-m += ethernet/
obj-m += tegra_hv_net.o
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
obj-m += can/
endif