mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-25 02:32:08 +03:00
Refine the compiler flags for ACK make command and fix compilation warnings from the new command. Bug 4187941 Bug 4223187 Signed-off-by: Jian-Min Liu <jianminl@nvidia.com> Change-Id: Iff7bf5839c585a6c3d3ef6daefb64eb113c739e2 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2954087 Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
16 lines
378 B
Makefile
16 lines
378 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-se-nvhost.o
|
|
obj-m += tegra-hv-vse-safety.o
|
|
endif
|
|
obj-m += tegra-se-nvrng.o
|
|
|
|
ifdef CONFIG_TEGRA_HOST1X
|
|
ifneq ($(CONFIG_TEGRA_SYSTEM_TYPE_ACK),y)
|
|
ccflags-y += -Wframe-larger-than=2560
|
|
endif
|
|
obj-m += tegra-nvvse-cryptodev.o
|
|
endif
|