REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the OvmfPkg 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: Andrew Fish <afish@apple.com>
19 lines
423 B
C
19 lines
423 B
C
/** @file
|
|
GUID for UEFI variables that are specific to OVMF configuration.
|
|
|
|
Copyright (C) 2014, Red Hat, Inc.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __OVMF_PLATFORM_CONFIG_H__
|
|
#define __OVMF_PLATFORM_CONFIG_H__
|
|
|
|
#define OVMF_PLATFORM_CONFIG_GUID \
|
|
{0x7235c51c, 0x0c80, 0x4cab, {0x87, 0xac, 0x3b, 0x08, 0x4a, 0x63, 0x04, 0xb1}}
|
|
|
|
extern EFI_GUID gOvmfPlatformConfigGuid;
|
|
|
|
#endif
|