From 259736545b42c6f0dc136204544cea5d2120ce42 Mon Sep 17 00:00:00 2001 From: Laxman Dewangan Date: Sun, 5 Nov 2023 08:48:49 +0000 Subject: [PATCH] crypto: Enable few of crypto driver for Linux6.6 Enable crypto drivers which are getting build properly with Linux 6.6 and keep disabling the compilation of build failed drivers. Bug 4346767 Change-Id: Ia5c67759b6c839a874ea9e38d601c722596e0008 Signed-off-by: Laxman Dewangan Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3010492 (cherry picked from commit 9b0b059027a9db1e322964d7983c514a13beab97) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3053821 Reviewed-by: svcacv Reviewed-by: Jonathan Hunter Tested-by: Jonathan Hunter GVS: Gerrit_Virtual_Submit --- drivers/Makefile | 2 -- drivers/crypto/Makefile | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/Makefile b/drivers/Makefile index c6a16e1e..ad388da5 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -17,9 +17,7 @@ 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 diff --git a/drivers/crypto/Makefile b/drivers/crypto/Makefile index bf6b149c..f35a7a1d 100644 --- a/drivers/crypto/Makefile +++ b/drivers/crypto/Makefile @@ -5,7 +5,9 @@ ifdef CONFIG_TEGRA_HOST1X obj-m += tegra-hv-vse-safety.o obj-m += tegra-nvvse-cryptodev.o ifdef CONFIG_CRYPTO_ENGINE +ifndef CONFIG_SKIP_CRYPTO obj-m += tegra/ endif endif +endif obj-m += tegra-se-nvrng.o