]> git.proxmox.com Git - mirror_qemu.git/commitdiff
machine: Remove obsoleted field from QEMUMachine
authorMarcel Apfelbaum <marcel.a@redhat.com>
Wed, 9 Apr 2014 17:34:49 +0000 (20:34 +0300)
committerAndreas Färber <afaerber@suse.de>
Mon, 5 May 2014 17:08:49 +0000 (19:08 +0200)
This field shouldn't be used any more since we
adopted the QOM way of iterating over the types.

The commit that obsoleted it is:
commit 261747f176f6f2d88f8268aaebfdd1a1afe887e2
    vl: Use MachineClass instead of global QEMUMachine list

    The machine registration flow is refactored to use the QOM functionality.
    Instead of linking the machines into a list, each machine has a type
    and the types can be traversed in the QOM way.

Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
include/hw/boards.h

index dd2c70da36cae5a4f67ba206a962ff3f3ed9daed..aaaa8716875d40ff840d861cd347574f106fdaae 100644 (file)
@@ -46,7 +46,6 @@ struct QEMUMachine {
     const char *default_machine_opts;
     const char *default_boot_order;
     GlobalProperty *compat_props;
-    struct QEMUMachine *next;
     const char *hw_version;
 };