mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-18 08:08:09 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the ArmVirtPkg 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: Sami Mujawar <sami.mujawar@arm.com>
23 lines
653 B
C
23 lines
653 B
C
/** @file
|
|
GUID for the HOB that caches the base address of the 16550 serial port, for
|
|
when PCD access is not available.
|
|
|
|
Copyright (c) 2020, ARM Limited. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef EARLY_16550_UART_BASE_ADDRESS_H__
|
|
#define EARLY_16550_UART_BASE_ADDRESS_H__
|
|
|
|
#define EARLY_16550_UART_BASE_ADDRESS_GUID { \
|
|
0xea67ca3e, 0x1f54, 0x436b, { \
|
|
0x97, 0x88, 0xd4, 0xeb, 0x29, 0xc3, 0x42, 0x67 \
|
|
} \
|
|
}
|
|
|
|
extern EFI_GUID gEarly16550UartBaseAddressGuid;
|
|
|
|
#endif // EARLY_16550_UART_BASE_ADDRESS_H__
|