Last change
on this file was 89983, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202105 and openssl 1.1.1j and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
703 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Implementation specific to the SmmCpuFeatureLib library instance.
|
---|
3 |
|
---|
4 | Copyright (c) Microsoft Corporation.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #include <PiMm.h>
|
---|
10 | #include "CpuFeaturesLib.h"
|
---|
11 |
|
---|
12 | /**
|
---|
13 | The constructor function for the Traditional MM library instance without STM.
|
---|
14 |
|
---|
15 | @param[in] ImageHandle The firmware allocated handle for the EFI image.
|
---|
16 | @param[in] SystemTable A pointer to the EFI System Table.
|
---|
17 |
|
---|
18 | @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
|
---|
19 |
|
---|
20 | **/
|
---|
21 | EFI_STATUS
|
---|
22 | EFIAPI
|
---|
23 | SmmCpuFeaturesLibConstructor (
|
---|
24 | IN EFI_HANDLE ImageHandle,
|
---|
25 | IN EFI_SYSTEM_TABLE *SystemTable
|
---|
26 | )
|
---|
27 | {
|
---|
28 | CpuFeaturesLibInitialization ();
|
---|
29 |
|
---|
30 | return EFI_SUCCESS;
|
---|
31 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.