mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
The required headers for dce driver are already included in the master makefile. Hence, it is not required to add include path explicitly. Bug 4087103 Change-Id: Ied598dc7bf1c49fe42869a254b26aa1e2989e73b Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2894618 Reviewed-by: svcacv <svcacv@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
41 lines
841 B
Makefile
41 lines
841 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 += -Wno-multichar
|
|
ccflags-y += -Werror
|
|
ccflags-y += -Wno-error=cpp
|
|
ifeq ($(VERSION),4)
|
|
ccflags-y += -Wextra -Wno-unused-parameter -Wno-missing-field-initializers
|
|
endif
|
|
|
|
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
|