diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-09-26 17:45:25 -0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-10-04 08:59:15 +0200 |
commit | b152b05a35acc0ff3da5648fd5cb97136853838c (patch) | |
tree | 848ab76e85003e03c5053b49f2a2086c2505337c /include/hw/xen | |
parent | 782c3f2939a8faefa4c5a324dfb472a534048510 (diff) | |
download | qemu-b152b05a35acc0ff3da5648fd5cb97136853838c.tar.gz qemu-b152b05a35acc0ff3da5648fd5cb97136853838c.tar.bz2 qemu-b152b05a35acc0ff3da5648fd5cb97136853838c.zip |
accel: Move Xen registration code to xen-common.c
Note that this has an user-visible side-effect: instead of reporting
"Xen is not supported for this target", QEMU binaries not supporting Xen
will report "xen accelerator does not exist".
As xen_available() always return 1 when CONFIG_XEN is enabled, we don't
need to set AccelClass.available anymore. xen_enabled() is not being
removed yet, but only because vl.c is still using it.
This also allows us to make xen_init() static.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/xen')
-rw-r--r-- | include/hw/xen/xen.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/xen/xen.h b/include/hw/xen/xen.h index f71f2d8963..b0ed04caa9 100644 --- a/include/hw/xen/xen.h +++ b/include/hw/xen/xen.h @@ -36,7 +36,6 @@ void xen_cmos_set_s3_resume(void *opaque, int irq, int level); qemu_irq *xen_interrupt_controller_init(void); -int xen_init(MachineClass *mc); void xenstore_store_pv_console_info(int i, struct CharDriverState *chr); #if defined(NEED_CPU_H) && !defined(CONFIG_USER_ONLY) |