mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

These helpers are not specific to x86_64 and will be needed by common code. Remove some unnecessary #includes. Reviewed-by: Michael Kelley <mhklinux@outlook.com> Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com> Link: https://lore.kernel.org/r/1738955002-20821-3-git-send-email-nunodasneves@linux.microsoft.com Signed-off-by: Wei Liu <wei.liu@kernel.org> Message-ID: <1738955002-20821-3-git-send-email-nunodasneves@linux.microsoft.com>
8 lines
247 B
Makefile
8 lines
247 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y := hv_init.o mmu.o nested.o irqdomain.o ivm.o
|
|
obj-$(CONFIG_X86_64) += hv_apic.o
|
|
obj-$(CONFIG_HYPERV_VTL_MODE) += hv_vtl.o
|
|
|
|
ifdef CONFIG_X86_64
|
|
obj-$(CONFIG_PARAVIRT_SPINLOCKS) += hv_spinlock.o
|
|
endif
|