mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
The driver tegra_hv was disabled for the Linux 6.2 and above
due to build failure. All build issue is fixed and re-enabling
driver for all kernel.
Bug 4370594
Change-Id: I9edef01a4f204b138204d583d9f7f61dc6112a25
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3014191
(cherry picked from commit af936f3b1e)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3059175
Tested-by: Jonathan Hunter <jonathanh@nvidia.com>
Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
16 lines
356 B
Makefile
16 lines
356 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
#
|
|
# Makefile for Hypervisor interface
|
|
#
|
|
ifdef CONFIG_TEGRA_VIRTUALIZATION
|
|
obj-m += tegra_hv.o
|
|
endif
|
|
obj-m += tegra_hv_pm_ctl.o
|
|
obj-m += hvc_sysfs.o
|
|
obj-m += ivc-cdev.o
|
|
obj-m += userspace_ivc_mempool.o
|
|
obj-m += tegra_hv_vcpu_yield.o
|
|
|