/** @file
FpgaSocketSetup.c -- FpgaSocketSetup
Copyright (c) HR650X BIOS Decompilation Project
**/
#include "FpgaSocketSetup.h"
// Function: ModuleEntryPoint
EFI_STATUS ModuleEntryPoint(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable)
{
EFI_STATUS Status;
InitializeFpgaSocketSetupContext();
Status = FpgaSocketSetupMain(ImageHandle, SystemTable);
if (EFI_ERROR (Status))
FpgaSocketConfigurationErrorHandler();
return Status;
}