mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
edk2 is dropping support for the ARM32 architecture. This commit removes ARM32 support from MdeModulePkg. This also drops irrelevant VALID_ARCHITECTURE comments from infs that are not arch specific. Signed-off-by: Oliver Smith-Denny <osde@microsoft.com>
21 lines
447 B
C
21 lines
447 B
C
/** @file
|
|
Create the NULL function to pass build in IA32/IPF/EBC.
|
|
|
|
Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#include <Uefi.h>
|
|
|
|
/**
|
|
Only when PEI is IA32 and DXE is X64, we need transfer to long mode in PEI
|
|
in order to process capsule data above 4GB. So create a NULL function here for
|
|
other cases.
|
|
**/
|
|
VOID
|
|
SaveLongModeContext (
|
|
VOID
|
|
)
|
|
{
|
|
}
|