mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +03:00
HWPM driver is moved to new location and it is build independently. nvidia-oot modules uses the independently build hwpm module. Remove the build of the hwpm module as part of nvidia-oot module build. Bug 4088571 Change-Id: I088e1f6c489c9cd6772a4724b52db6f56564395d Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2894662 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
33 lines
826 B
Makefile
33 lines
826 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
obj-m += firmwares-class.o
|
|
obj-m += firmwares-inventory.o
|
|
|
|
tegra-bootloader-debug-objs := tegra_bootloader_debug.o
|
|
tegra-bootloader-debug-objs += tegra_bootloader_debug_init.o
|
|
obj-m += tegra-bootloader-debug.o
|
|
|
|
tegra-cactmon-objs := cactmon.o
|
|
tegra-cactmon-objs += actmon_common.o
|
|
obj-m += tegra-cactmon.o
|
|
obj-m += tegra-fsicom.o
|
|
|
|
tegra-camera-rtcpu-objs := tegra-camera-rtcpu-base.o rtcpu/tegra-rtcpu-trace.o rtcpu/rtcpu-monitor.o
|
|
obj-m += tegra-camera-rtcpu.o
|
|
|
|
ifdef CONFIG_TEGRA_HOST1X
|
|
obj-m += cvnas/
|
|
endif
|
|
obj-m += mce/
|
|
ifdef CONFIG_PERF_EVENTS
|
|
obj-m += uncore_pmu/
|
|
endif
|
|
obj-m += mc-hwpm.o
|
|
obj-m += mc-utils/
|
|
obj-m += dce/
|
|
obj-m += psc/
|
|
obj-m += rtcpu/
|
|
obj-m += aon/
|
|
obj-m += tegra-uss-io-proxy.o
|