4 * Copyright (C) 2019 Intel Corporation
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
;