ShellPkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the ShellPkg 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: Ray Ni <ray.ni@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
c411b485b6
commit
47d20b54f9
@ -16,23 +16,23 @@
|
||||
/**
|
||||
An ACPI_PARSER array describing the ACPI FACS Table.
|
||||
**/
|
||||
STATIC CONST ACPI_PARSER FacsParser[] = {
|
||||
{L"Signature", 4, 0, L"%c%c%c%c", Dump4Chars, NULL, NULL, NULL},
|
||||
{L"Length", 4, 4, L"%d", NULL, NULL, NULL, NULL},
|
||||
{L"Hardware Signature", 4, 8, L"0x%x", NULL, NULL, NULL, NULL},
|
||||
{L"Firmware Waking Vector", 4, 12, L"0x%x", NULL, NULL, NULL, NULL},
|
||||
{L"Global Lock", 4, 16, L"0x%x", NULL, NULL, NULL, NULL},
|
||||
{L"Flags", 4, 20, L"0x%x", NULL, NULL, NULL, NULL},
|
||||
{L"X Firmware Walking Vector", 8, 24, L"0x%lx", NULL, NULL, NULL, NULL},
|
||||
{L"Version", 1, 32, L"%d", NULL, NULL, NULL, NULL},
|
||||
{L"Reserved", 3, 33, L"%x %x %x", Dump3Chars, NULL, NULL, NULL},
|
||||
{L"OSPM Flags", 4, 36, L"0x%x", NULL, NULL, NULL, NULL},
|
||||
{L"Reserved", 8, 40, L"%x %x %x %x %x %x %x %x", Dump8Chars, NULL, NULL,
|
||||
NULL},
|
||||
{L"Reserved", 8, 48, L"%x %x %x %x %x %x %x %x", Dump8Chars, NULL, NULL,
|
||||
NULL},
|
||||
{L"Reserved", 8, 56, L"%x %x %x %x %x %x %x %x", Dump8Chars, NULL, NULL,
|
||||
NULL}
|
||||
STATIC CONST ACPI_PARSER FacsParser[] = {
|
||||
{ L"Signature", 4, 0, L"%c%c%c%c", Dump4Chars, NULL, NULL, NULL },
|
||||
{ L"Length", 4, 4, L"%d", NULL, NULL, NULL, NULL },
|
||||
{ L"Hardware Signature", 4, 8, L"0x%x", NULL, NULL, NULL, NULL },
|
||||
{ L"Firmware Waking Vector", 4, 12, L"0x%x", NULL, NULL, NULL, NULL },
|
||||
{ L"Global Lock", 4, 16, L"0x%x", NULL, NULL, NULL, NULL },
|
||||
{ L"Flags", 4, 20, L"0x%x", NULL, NULL, NULL, NULL },
|
||||
{ L"X Firmware Walking Vector", 8, 24, L"0x%lx", NULL, NULL, NULL, NULL },
|
||||
{ L"Version", 1, 32, L"%d", NULL, NULL, NULL, NULL },
|
||||
{ L"Reserved", 3, 33, L"%x %x %x", Dump3Chars, NULL, NULL, NULL },
|
||||
{ L"OSPM Flags", 4, 36, L"0x%x", NULL, NULL, NULL, NULL },
|
||||
{ L"Reserved", 8, 40, L"%x %x %x %x %x %x %x %x", Dump8Chars, NULL, NULL,
|
||||
NULL },
|
||||
{ L"Reserved", 8, 48, L"%x %x %x %x %x %x %x %x", Dump8Chars, NULL, NULL,
|
||||
NULL },
|
||||
{ L"Reserved", 8, 56, L"%x %x %x %x %x %x %x %x", Dump8Chars, NULL, NULL,
|
||||
NULL }
|
||||
};
|
||||
|
||||
/**
|
||||
@ -50,10 +50,10 @@ STATIC CONST ACPI_PARSER FacsParser[] = {
|
||||
VOID
|
||||
EFIAPI
|
||||
ParseAcpiFacs (
|
||||
IN BOOLEAN Trace,
|
||||
IN UINT8* Ptr,
|
||||
IN UINT32 AcpiTableLength,
|
||||
IN UINT8 AcpiTableRevision
|
||||
IN BOOLEAN Trace,
|
||||
IN UINT8 *Ptr,
|
||||
IN UINT32 AcpiTableLength,
|
||||
IN UINT8 AcpiTableRevision
|
||||
)
|
||||
{
|
||||
if (!Trace) {
|
||||
|
Reference in New Issue
Block a user