mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
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 <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3010492
(cherry picked from commit 9b0b059027)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3053821
Reviewed-by: svcacv <svcacv@nvidia.com>
Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com>
Tested-by: Jonathan Hunter <jonathanh@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
14 lines
313 B
Makefile
14 lines
313 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
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
|