mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
The L4T packaging needs the soc specific dummy driver to be available always. However, it is not available in generic build and it creates the packaging/configuration fail. Add soc specific dummy driver for pcie so that the respective binary should be available always. Bug 4695516 Change-Id: Ic40e60a12de35cebc7e9acec9b09e39aa267276b Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3154314 Tested-by: Ashish Mhetre <amhetre@nvidia.com> Reviewed-by: Bitan Biswas <bbiswas@nvidia.com> Tested-by: Laxman Dewangan <ldewangan@nvidia.com> GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
17 lines
630 B
Makefile
17 lines
630 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
# Empty Makefile
|
|
# NOTE: Do not change or add anything in this Makefile.
|
|
# The source code and Makefile rules are copied from the
|
|
# kernel/nvidia-$soc/drivers/pci/controller/private-soc. This
|
|
# file is just place-holder for empty Makefile to avoid any build
|
|
# issue when copy is not done from command line and building
|
|
# the tree independent of source copy.
|
|
|
|
# Exception: Adding the dummy driver for T264. It will be override by actual
|
|
# SOC specific driver.
|
|
|
|
obj-m += pcie-tegra264.o
|
|
pcie-tegra264-objs := pcie-tegra-soc-dummy.o
|