mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 02:01:36 +03:00
Add lincese and copyright information on Makefile where it is missing. Bug 4078035 Change-Id: I4d44143c186a30aabacb706b7db6549131c6e4d6 Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2924242 GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
GCOV_PROFILE := y
|
|
ccflags-y += -Werror
|
|
|
|
obj-$(CONFIG_TEGRA_NVADSP) := nvadsp.o
|
|
nvadsp-objs += dev.o os.o app.o app_loader_linker.o\
|
|
amc.o nvadsp_shared_sema.o \
|
|
hwmailbox.o mailbox.o msgq.o \
|
|
mem_manager.o aram_manager.o dram_app_mem_manager.o \
|
|
dev-t21x.o os-t21x.o dev-t18x.o os-t18x.o acast.o
|
|
|
|
|
|
ifeq ($(CONFIG_TEGRA_ADSP_DFS),y)
|
|
nvadsp-objs += adsp_dfs.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_ADSP_ACTMON),y)
|
|
nvadsp-objs += ape_actmon.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_EMC_APE_DFS),y)
|
|
nvadsp-objs += emc_dfs.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_ADSP_CONSOLE),y)
|
|
nvadsp-objs += adsp_console_dbfs.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_ADSP_CPUSTAT),y)
|
|
nvadsp-objs += adsp_cpustat.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_ADSP_FILEIO),y)
|
|
nvadsp-objs += adspff.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_ADSP_LPTHREAD),y)
|
|
nvadsp-objs += adsp_lpthread.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TEGRA_VIRT_AUDIO_IVC),y)
|
|
ccflags-y += -I$(srctree.nvidia)/drivers/platform/tegra/nvaudio_ivc/
|
|
endif
|