mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-21 01:28:13 +02:00
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>
25 lines
677 B
C
25 lines
677 B
C
/******************************************************************************
|
|
* protocols.h
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef __XEN_PROTOCOLS_H__
|
|
#define __XEN_PROTOCOLS_H__
|
|
|
|
#define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi"
|
|
#define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi"
|
|
#define XEN_IO_PROTO_ABI_ARM "arm-abi"
|
|
|
|
#if defined (MDE_CPU_IA32)
|
|
#define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
|
|
#elif defined (MDE_CPU_X64)
|
|
#define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
|
|
#elif defined (__arm__) || defined (__aarch64__)
|
|
#define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_ARM
|
|
#else
|
|
#error arch fixup needed here
|
|
#endif
|
|
|
|
#endif
|