MdeModulePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdeModulePkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
committed by
mergify[bot]
parent
7c7184e201
commit
1436aea4d5
@ -29,9 +29,9 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
RETURN_STATUS
|
||||
EFIAPI
|
||||
SaveLockBox (
|
||||
IN GUID *Guid,
|
||||
IN VOID *Buffer,
|
||||
IN UINTN Length
|
||||
IN GUID *Guid,
|
||||
IN VOID *Buffer,
|
||||
IN UINTN Length
|
||||
);
|
||||
|
||||
/**
|
||||
@ -50,22 +50,22 @@ SaveLockBox (
|
||||
RETURN_STATUS
|
||||
EFIAPI
|
||||
SetLockBoxAttributes (
|
||||
IN GUID *Guid,
|
||||
IN UINT64 Attributes
|
||||
IN GUID *Guid,
|
||||
IN UINT64 Attributes
|
||||
);
|
||||
|
||||
//
|
||||
// With this flag, this LockBox can be restored to this Buffer
|
||||
// with RestoreAllLockBoxInPlace()
|
||||
//
|
||||
#define LOCK_BOX_ATTRIBUTE_RESTORE_IN_PLACE BIT0
|
||||
#define LOCK_BOX_ATTRIBUTE_RESTORE_IN_PLACE BIT0
|
||||
//
|
||||
// With this flag, this LockBox can be restored in S3 resume only.
|
||||
// This LockBox can not be restored after SmmReadyToLock in normal boot
|
||||
// and after EndOfS3Resume in S3 resume.
|
||||
// It can not be set together with LOCK_BOX_ATTRIBUTE_RESTORE_IN_PLACE.
|
||||
//
|
||||
#define LOCK_BOX_ATTRIBUTE_RESTORE_IN_S3_ONLY BIT1
|
||||
#define LOCK_BOX_ATTRIBUTE_RESTORE_IN_S3_ONLY BIT1
|
||||
|
||||
/**
|
||||
This function will update confidential information to lockbox.
|
||||
@ -89,10 +89,10 @@ SetLockBoxAttributes (
|
||||
RETURN_STATUS
|
||||
EFIAPI
|
||||
UpdateLockBox (
|
||||
IN GUID *Guid,
|
||||
IN UINTN Offset,
|
||||
IN VOID *Buffer,
|
||||
IN UINTN Length
|
||||
IN GUID *Guid,
|
||||
IN UINTN Offset,
|
||||
IN VOID *Buffer,
|
||||
IN UINTN Length
|
||||
);
|
||||
|
||||
/**
|
||||
@ -116,9 +116,9 @@ UpdateLockBox (
|
||||
RETURN_STATUS
|
||||
EFIAPI
|
||||
RestoreLockBox (
|
||||
IN GUID *Guid,
|
||||
IN VOID *Buffer OPTIONAL,
|
||||
IN OUT UINTN *Length OPTIONAL
|
||||
IN GUID *Guid,
|
||||
IN VOID *Buffer OPTIONAL,
|
||||
IN OUT UINTN *Length OPTIONAL
|
||||
);
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user