diff options
author | Juergen Gross <jgross@suse.com> | 2019-10-01 10:25:34 +0200 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2019-10-02 10:31:07 -0400 |
commit | 09515706857a7d5a2ffb5ce6a44c0bc7859a745b (patch) | |
tree | 2799212244a1c04afb33ba74b9c23390e559473f /arch/arm64/xen | |
parent | ec066de1a567169c4737a5933218c329cedf52bd (diff) | |
download | linux-09515706857a7d5a2ffb5ce6a44c0bc7859a745b.tar.bz2 |
xen/efi: have a common runtime setup function
Today the EFI runtime functions are setup in architecture specific
code (x86 and arm), with the functions themselves living in drivers/xen
as they are not architecture dependent.
As the setup is exactly the same for arm and x86 move the setup to
drivers/xen, too. This at once removes the need to make the single
functions global visible.
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
[boris: "Dropped EXPORT_SYMBOL_GPL(xen_efi_runtime_setup)"]
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'arch/arm64/xen')
-rw-r--r-- | arch/arm64/xen/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/xen/Makefile b/arch/arm64/xen/Makefile index a4fc65f3928d..b66215e8658e 100644 --- a/arch/arm64/xen/Makefile +++ b/arch/arm64/xen/Makefile @@ -1,4 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only xen-arm-y += $(addprefix ../../arm/xen/, enlighten.o grant-table.o p2m.o mm.o) obj-y := xen-arm.o hypercall.o -obj-$(CONFIG_XEN_EFI) += $(addprefix ../../arm/xen/, efi.o) |