blob: 735eee8ba9329f241ea44ca51aeb5cbbd4994676 (
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
33
34
35
36
37
38
39
40
41
42
43
|
/** @file
Entry point of UserAuthenticationStandaloneMm.
Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UserAuthenticationSmm.h"
/**
NULL implement for Lock password variables.
Relies on UserAuthenticationStandaloneMmDxe to lock the password variables.
@retval EFI_SUCCESS Always return success.
**/
EFI_STATUS
LockPasswordVariable (
VOID
)
{
return EFI_SUCCESS;
}
/**
Main entry for this driver.
@param ImageHandle Image handle this driver.
@param SystemTable Pointer to SystemTable.
@retval EFI_SUCESS This function always complete successfully.
**/
EFI_STATUS
EFIAPI
UserAuthenticationMmEntry (
IN EFI_HANDLE ImageHandle,
IN EFI_MM_SYSTEM_TABLE *SystemTable
)
{
return PasswordSmmInit ();
}
|