REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the PcAtChipsetPkg 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>
20 lines
473 B
C
20 lines
473 B
C
/** @file
|
|
GUID for PcAtChipsetPkg PCD Token Space.
|
|
|
|
Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef _PCATCHIPSET_TOKEN_SPACE_GUID_H_
|
|
#define _PCATCHIPSET_TOKEN_SPACE_GUID_H_
|
|
|
|
#define PCATCHIPSET_TOKEN_SPACE_GUID \
|
|
{ \
|
|
0x326ae723, 0xae32, 0x4589, { 0x98, 0xb8, 0xca, 0xc2, 0x3c, 0xdc, 0xc1, 0xb1 } \
|
|
}
|
|
|
|
extern EFI_GUID gPcAtChipsetPkgTokenSpaceGuid;
|
|
|
|
#endif
|