mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +03:00
The Tegra DCE driver compiles fine without the GCC flags to disable specific warnings and so remove these to catch any new warnings that get introduced that might be missed with these flags in place. Bug 4190165 Change-Id: I4f2d445588baecec89ca9ba979e5d8febe39cf3c Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2938374 Reviewed-by: Mahesh Kumar <mahkumar@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
36 lines
684 B
Makefile
36 lines
684 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
#
|
|
# Display Controller Engine code.
|
|
#
|
|
GCOV_PROFILE := y
|
|
|
|
ccflags-y += -I$(srctree.nvidia-oot)/drivers/platform/tegra/dce/include
|
|
ccflags-y += -Werror
|
|
|
|
obj-m += tegra-dce.o
|
|
tegra-dce-objs += \
|
|
dce-ast.o \
|
|
dce-reset.o \
|
|
dce-hsp-smb.o \
|
|
dce-hsp-ss.o \
|
|
dce-worker.o \
|
|
dce-fsm.o \
|
|
dce-init-deinit.o \
|
|
dce-mailbox.o \
|
|
dce-bootstrap.o \
|
|
dce-admin.o \
|
|
dce-ipc.o \
|
|
dce-ipc-signal.o \
|
|
dce-client-ipc.o \
|
|
dce-module.o \
|
|
dce-pm.o \
|
|
dce-util-common.o
|
|
|
|
ifeq ($(CONFIG_DEBUG_FS),y)
|
|
tegra-dce-objs += \
|
|
dce-debug.o \
|
|
dce-admin-debug.o \
|
|
dce-debug-perf.o
|
|
endif
|