Files
linux-nv-oot/drivers/misc/nvscic2c-pcie/Makefile
Laxman Dewangan 84b7e463cd nvscic2c-pcie: Get rid of explicit header inclusion
The required headers for nvscic2c-pcie driver are already
included in the master makefile. Hence, it is not
required to add include path explicitly.

Bug 4087103

Change-Id: Ia9ed4ef56afb830c70cf5bb18cd13b90dcb60680
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2894615
Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
2023-04-28 02:19:57 -07:00

14 lines
670 B
Makefile

# SPDX-License-Identifier: GPL-2.0-only
# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
ccflags-y += -Werror
ccflags-y += -DDYNAMIC_DEBUG_MODULE
ccflags-y += -I$(srctree.nvidia-oot)/drivers/misc/nvscic2c-pcie
ccflags-y += -I$(srctree.nvidia-oot)/drivers/gpu/drm/tegra/include
ifdef CONFIG_PCIE_TEGRA194_EP
obj-m := nvscic2c-pcie-epc.o nvscic2c-pcie-epf.o
nvscic2c-pcie-epc-y := comm-channel.o dt.o endpoint.o epc/module.o iova-alloc.o iova-mngr.o pci-client.o stream-extensions.o vmap.o vmap-pin.o
nvscic2c-pcie-epf-y := comm-channel.o dt.o endpoint.o epf/module.o iova-alloc.o iova-mngr.o pci-client.o stream-extensions.o vmap.o vmap-pin.o
endif