MdePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdePkg 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
1436aea4d5
commit
2f88bd3a12
@@ -17,29 +17,29 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
0x0784924f, 0xe296, 0x11d4, {0x9a, 0x49, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
|
||||
}
|
||||
|
||||
typedef struct _EFI_DRIVER_DIAGNOSTICS_PROTOCOL EFI_DRIVER_DIAGNOSTICS_PROTOCOL;
|
||||
typedef struct _EFI_DRIVER_DIAGNOSTICS_PROTOCOL EFI_DRIVER_DIAGNOSTICS_PROTOCOL;
|
||||
|
||||
typedef enum {
|
||||
///
|
||||
/// Performs standard diagnostics on the controller.
|
||||
///
|
||||
EfiDriverDiagnosticTypeStandard = 0,
|
||||
EfiDriverDiagnosticTypeStandard = 0,
|
||||
///
|
||||
/// This is an optional diagnostic type that performs diagnostics on the controller that may
|
||||
/// take an extended amount of time to execute.
|
||||
///
|
||||
EfiDriverDiagnosticTypeExtended = 1,
|
||||
EfiDriverDiagnosticTypeExtended = 1,
|
||||
///
|
||||
/// This is an optional diagnostic type that performs diagnostics on the controller that are
|
||||
/// suitable for a manufacturing and test environment.
|
||||
///
|
||||
EfiDriverDiagnosticTypeManufacturing= 2,
|
||||
EfiDriverDiagnosticTypeManufacturing = 2,
|
||||
///
|
||||
/// This is an optional diagnostic type that would only be used in the situation where an
|
||||
/// EFI_NOT_READY had been returned by a previous call to RunDiagnostics()
|
||||
/// and there is a desire to cancel the current running diagnostics operation.
|
||||
///
|
||||
EfiDriverDiagnosticTypeCancel = 3,
|
||||
EfiDriverDiagnosticTypeCancel = 3,
|
||||
EfiDriverDiagnosticTypeMaximum
|
||||
} EFI_DRIVER_DIAGNOSTIC_TYPE;
|
||||
|
||||
@@ -112,14 +112,14 @@ EFI_STATUS
|
||||
/// Used to perform diagnostics on a controller that an EFI Driver is managing.
|
||||
///
|
||||
struct _EFI_DRIVER_DIAGNOSTICS_PROTOCOL {
|
||||
EFI_DRIVER_DIAGNOSTICS_RUN_DIAGNOSTICS RunDiagnostics;
|
||||
EFI_DRIVER_DIAGNOSTICS_RUN_DIAGNOSTICS RunDiagnostics;
|
||||
///
|
||||
/// A Null-terminated ASCII string that contains one or more ISO 639-2
|
||||
/// language codes. This is the list of language codes that this protocol supports.
|
||||
///
|
||||
CHAR8 *SupportedLanguages;
|
||||
CHAR8 *SupportedLanguages;
|
||||
};
|
||||
|
||||
extern EFI_GUID gEfiDriverDiagnosticsProtocolGuid;
|
||||
extern EFI_GUID gEfiDriverDiagnosticsProtocolGuid;
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user