]> git.proxmox.com Git - mirror_edk2.git/commitdiff
OvmfPkg/XenHypercallLib: Fix naming of AArch64
authorAnthony PERARD <anthony.perard@citrix.com>
Wed, 20 Jul 2022 13:17:10 +0000 (06:17 -0700)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Thu, 28 Jul 2022 01:22:13 +0000 (01:22 +0000)
Fix path to follow naming convention of "AArch64", and allow the path
in "Maintainers.txt" to work as expected.

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3982
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
OvmfPkg/Library/XenHypercallLib/AArch64/Hypercall.S [new file with mode: 0644]
OvmfPkg/Library/XenHypercallLib/Aarch64/Hypercall.S [deleted file]
OvmfPkg/Library/XenHypercallLib/XenHypercallLib.inf

diff --git a/OvmfPkg/Library/XenHypercallLib/AArch64/Hypercall.S b/OvmfPkg/Library/XenHypercallLib/AArch64/Hypercall.S
new file mode 100644 (file)
index 0000000..1533d48
--- /dev/null
@@ -0,0 +1,20 @@
+\r
+/** @file\r
+  AArch64 implementation of XenHypercall2\r
+\r
+  Copyright (C) 2014, Linaro Ltd.\r
+\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
+\r
+**/\r
+\r
+#include <IndustryStandard/Xen/arch-arm/xen.h>\r
+\r
+  .text\r
+  .global   ASM_PFX(XenHypercall2)\r
+ASM_PFX(XenHypercall2):\r
+  mov     x16, x0\r
+  mov     x0, x1\r
+  mov     x1, x2\r
+  hvc     #XEN_HYPERCALL_TAG\r
+  ret\r
diff --git a/OvmfPkg/Library/XenHypercallLib/Aarch64/Hypercall.S b/OvmfPkg/Library/XenHypercallLib/Aarch64/Hypercall.S
deleted file mode 100644 (file)
index 1533d48..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-\r
-/** @file\r
-  AArch64 implementation of XenHypercall2\r
-\r
-  Copyright (C) 2014, Linaro Ltd.\r
-\r
-  SPDX-License-Identifier: BSD-2-Clause-Patent\r
-\r
-**/\r
-\r
-#include <IndustryStandard/Xen/arch-arm/xen.h>\r
-\r
-  .text\r
-  .global   ASM_PFX(XenHypercall2)\r
-ASM_PFX(XenHypercall2):\r
-  mov     x16, x0\r
-  mov     x0, x1\r
-  mov     x1, x2\r
-  hvc     #XEN_HYPERCALL_TAG\r
-  ret\r
index 32ae73f7aac58f2d85f4d440c5852714fa38f861..edb77872391c5a8925c2f4ad1b05753c7cc0f0ab 100644 (file)
@@ -42,7 +42,7 @@
   Arm/Hypercall.S\r
 \r
 [Sources.AARCH64]\r
-  Aarch64/Hypercall.S\r
+  AArch64/Hypercall.S\r
 \r
 [Sources]\r
   XenHypercall.c\r