crypto: skip drivers for Linux 6.6.

There is major changes in the engine context operation
for Linux 6.6 and it is required to handle properly.
While fix is in  a way, disable this driver for Linux6.6
to unblock further development.

Bug 4346767

Change-Id: I0f9325637726feb57b51a27e582d7d531ac1b6a7
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3009040
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
Laxman Dewangan
2023-11-02 08:42:38 +00:00
committed by mobile promotions
parent 236a2f09ee
commit 2bd1339e63
2 changed files with 5 additions and 0 deletions

View File

@@ -58,6 +58,9 @@ subdir-ccflags-y += -DNV_UNEXPORT_FD_HANDLE_CONVERSION
# FB Deferred IO helpers name alignment
subdir-ccflags-y += -DNV_FB_DEFERRED_IO_OPS_RENAME
# Crypto driver has major change in it ops, skip it
export CONFIG_SKIP_CRYPTO=y
endif
ifeq ($(CONFIG_TEGRA_VIRTUALIZATION),y)

View File

@@ -17,7 +17,9 @@ endif
obj-m += c2c/
obj-m += clink/
obj-m += cpuidle/
ifeq ($(CONFIG_SKIP_CRYPTO),)
obj-m += crypto/
endif
ifdef CONFIG_PM_DEVFREQ
obj-m += devfreq/
endif