https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
32 lines
885 B
C
32 lines
885 B
C
/** @file
|
|
|
|
Copyright (c) 2013-2015 Intel Corporation.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
**/
|
|
|
|
#include "FwBlockService.h"
|
|
|
|
|
|
/**
|
|
This function allows the caller to determine if UEFI SetVirtualAddressMap() has been called.
|
|
|
|
This function returns TRUE after all the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE functions have
|
|
executed as a result of the OS calling SetVirtualAddressMap(). Prior to this time FALSE
|
|
is returned. This function is used by runtime code to decide it is legal to access services
|
|
that go away after SetVirtualAddressMap().
|
|
|
|
@retval TRUE The system has finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
|
|
@retval FALSE The system has not finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
|
|
|
|
**/
|
|
BOOLEAN
|
|
EfiGoneVirtual (
|
|
VOID
|
|
)
|
|
{
|
|
return FALSE; //Hard coded to FALSE for SMM driver.
|
|
}
|