Files
system76-edk2/OvmfPkg/XenIoPvhDxe/XenIoPvhDxe.c
Michael Kubacki ac0a286f4d OvmfPkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737

Apply uncrustify changes to .c/.h files in the OvmfPkg package

Cc: Andrew Fish <afish@apple.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Andrew Fish <afish@apple.com>
2021-12-07 17:24:28 +00:00

56 lines
1.1 KiB
C

/** @file
Driver for the XenIo protocol
This driver simply allocate space for the grant tables.
Copyright (c) 2019, Citrix Systems, Inc.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Library/MemoryAllocationLib.h>
#include <Library/PcdLib.h>
#include <Library/XenIoMmioLib.h>
#include <Library/XenPlatformLib.h>
EFI_STATUS
EFIAPI
InitializeXenIoPvhDxe (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
VOID *Allocation;
EFI_STATUS Status;
EFI_HANDLE XenIoHandle;
Allocation = NULL;
XenIoHandle = NULL;
if (!XenPvhDetected ()) {
return EFI_UNSUPPORTED;
}
Allocation = AllocateReservedPages (FixedPcdGet32 (PcdXenGrantFrames));
if (Allocation == NULL) {
Status = EFI_OUT_OF_RESOURCES;
goto Error;
}
Status = XenIoMmioInstall (&XenIoHandle, (UINTN)Allocation);
if (EFI_ERROR (Status)) {
goto Error;
}
return EFI_SUCCESS;
Error:
if (Allocation != NULL) {
FreePages (Allocation, FixedPcdGet32 (PcdXenGrantFrames));
}
return Status;
}