c834596f79
xen_hvm_init() is restricted to the X86 architecture. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200908155530.249806-6-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
16 lines
291 B
C
16 lines
291 B
C
/*
|
|
* Xen X86-specific
|
|
*
|
|
* Copyright 2020 Red Hat, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef QEMU_HW_XEN_X86_H
|
|
#define QEMU_HW_XEN_X86_H
|
|
|
|
#include "hw/i386/pc.h"
|
|
|
|
void xen_hvm_init_pc(PCMachineState *pcms, MemoryRegion **ram_memory);
|
|
|
|
#endif /* QEMU_HW_XEN_X86_H */
|