Files
linux-nv-oot/drivers/platform/tegra/dce/Makefile
Jon Hunter b970ad45ec platform: tegra: dce: Remove unneeded warning flags
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>
2023-07-19 08:46:58 -07:00

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