hw/char/riscv_htif: Fix printing of console characters on big endian hosts
[qemu/armbru.git] / include / hw / i386 / hostmem-epc.h
blob846c7260854ef4c6c8253bf1a5707b56b737b525
1 /*
2 * SGX EPC backend
4 * Copyright (C) 2019 Intel Corporation
6 * Authors:
7 * Sean Christopherson <sean.j.christopherson@intel.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
12 #ifndef QEMU_HOSTMEM_EPC_H
13 #define QEMU_HOSTMEM_EPC_H
15 #include "sysemu/hostmem.h"
17 #define TYPE_MEMORY_BACKEND_EPC "memory-backend-epc"
19 #define MEMORY_BACKEND_EPC(obj) \
20 OBJECT_CHECK(HostMemoryBackendEpc, (obj), TYPE_MEMORY_BACKEND_EPC)
22 typedef struct HostMemoryBackendEpc HostMemoryBackendEpc;
24 struct HostMemoryBackendEpc {
25 HostMemoryBackend parent_obj;
28 #endif