diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2016-02-16 18:59:07 -0200 |
|---|---|---|
| committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-03-16 15:54:23 -0300 |
| commit | 34294e2f545dae9f020b6d52e3929f4c4e45800c (patch) | |
| tree | 93554d0af7120bb50751f0c86e191e6b05debced /vl.c | |
| parent | 0e6aac87fd0f5db2be57c36c03d67388577208a7 (diff) | |
| download | focaccia-qemu-34294e2f545dae9f020b6d52e3929f4c4e45800c.tar.gz focaccia-qemu-34294e2f545dae9f020b6d52e3929f4c4e45800c.zip | |
module: Rename machine_init() to opts_init()
The only remaining users of machine_init() only call qemu_add_opts(). Rename machine_init() to opts_init() and move it closer to the qemu_add_opts() calls on vl.c. Cc: "Michael S. Tsirkin" <mst@redhat.com> Cc: Igor Mammedov <imammedo@redhat.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'vl.c')
| -rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vl.c b/vl.c index 7a28982eaa..40ed4d0cb9 100644 --- a/vl.c +++ b/vl.c @@ -3021,6 +3021,7 @@ int main(int argc, char **argv, char **envp) qemu_add_opts(&qemu_icount_opts); qemu_add_opts(&qemu_semihosting_config_opts); qemu_add_opts(&qemu_fw_cfg_opts); + module_call_init(MODULE_INIT_OPTS); runstate_init(); @@ -3033,7 +3034,6 @@ int main(int argc, char **argv, char **envp) QLIST_INIT (&vm_change_state_head); os_setup_early_signal_handling(); - module_call_init(MODULE_INIT_MACHINE); cpu_model = NULL; snapshot = 0; cyls = heads = secs = 0; |