hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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;
}