CpuInitPeim.c 762 B

1234567891011121314151617181920212223242526272829303132
  1. /** @file
  2. Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. Module Name:
  5. CpuInitPeim.c
  6. Abstract:
  7. Functions for LpcSio initilization
  8. It is needed for early onboard LAN controller disable/enable in platform setup.
  9. --*/
  10. #include "PlatformEarlyInit.h"
  11. EFI_STATUS
  12. PlatformCpuInit (
  13. IN CONST EFI_PEI_SERVICES **PeiServices,
  14. IN SYSTEM_CONFIGURATION *SystemConfiguration,
  15. IN EFI_PLATFORM_CPU_INFO *PlatformCpuInfo
  16. )
  17. {
  18. return EFI_SUCCESS;
  19. }