blob: 1c2dac70e3c6f74c49f5f97b3ea3ea5e1bac3cd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/** @file
MM driver source for several Serial Flash devices
which are compliant with the Intel(R) Serial Flash Interface Compatibility Specification.
Copyright (c) Microsoft Corporation.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SpiFvbServiceCommon.h"
#include "SpiFvbServiceMm.h"
/**
The driver Traditional MM entry point.
@param[in] ImageHandle Image handle of this driver.
@param[in] SystemTable A pointer to the EFI system table.
@retval EFI_SUCCESS This function always returns EFI_SUCCESS.
**/
EFI_STATUS
EFIAPI
SpiFvbTraditionalMmInitialize (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
FvbInitialize ();
return EFI_SUCCESS;
}
|