Newer
Older
AMI-Aptio-BIOS-Reversed / PurleySktPkg / Dxe / FpgaInit / FpgaSocketSetup / FpgaSocketSetup.c
@Ajax Dong Ajax Dong 2 days ago 456 bytes Recovering names (will, pause for now)
/** @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;
}