diff options
author | Michael Kelley <mikelley@microsoft.com> | 2021-08-04 17:52:37 +0200 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2021-08-04 18:54:36 +0200 |
commit | 9bbb888824e38cc2e9118ed351fe3d22403a73e1 (patch) | |
tree | 074d6a37063f435602b343b0a3931dbc223dd6de /arch/arm64/hyperv/Makefile | |
parent | arm64: hyperv: Add panic handler (diff) | |
download | linux-9bbb888824e38cc2e9118ed351fe3d22403a73e1.tar.xz linux-9bbb888824e38cc2e9118ed351fe3d22403a73e1.zip |
arm64: hyperv: Initialize hypervisor on boot
Add ARM64-specific code to initialize the Hyper-V
hypervisor when booting as a guest VM.
This code is built only when CONFIG_HYPERV is enabled.
Signed-off-by: Michael Kelley <mikelley@microsoft.com>
Acked-by: Marc Zyngier <maz@kernel.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Link: https://lore.kernel.org/r/1628092359-61351-4-git-send-email-mikelley@microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'arch/arm64/hyperv/Makefile')
-rw-r--r-- | arch/arm64/hyperv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/hyperv/Makefile b/arch/arm64/hyperv/Makefile index 1697d30ff106..87c31c001da9 100644 --- a/arch/arm64/hyperv/Makefile +++ b/arch/arm64/hyperv/Makefile @@ -1,2 +1,2 @@ # SPDX-License-Identifier: GPL-2.0 -obj-y := hv_core.o +obj-y := hv_core.o mshyperv.o |