aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2015-08-07 16:55:47 -0300
committerMichael S. Tsirkin <mst@redhat.com>2015-08-13 14:08:26 +0300
commit41742767bfa8127954b6f57b39b590adcde3ac6c (patch)
treec0adf49fe13db009ef4eaead1c2a021d3151ef34 /include
parent8170dfa077761ed979b45f608cf706253a764f0d (diff)
downloadqemu-41742767bfa8127954b6f57b39b590adcde3ac6c.zip
qemu-41742767bfa8127954b6f57b39b590adcde3ac6c.tar.gz
qemu-41742767bfa8127954b6f57b39b590adcde3ac6c.tar.bz2
pc: Eliminate pc_common_machine_options()
All TYPE_PC_MACHINE subclasses call pc_common_machine_options(). TYPE_PC_MACHINE can simply initialize the common options on class_init directly. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/i386/pc.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
index 6746097..1d21ab2 100644
--- a/include/hw/i386/pc.h
+++ b/include/hw/i386/pc.h
@@ -699,14 +699,8 @@ bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
.value = "off",\
},
-static inline void pc_common_machine_options(MachineClass *m)
-{
- m->default_boot_order = "cad";
-}
-
static inline void pc_default_machine_options(MachineClass *m)
{
- pc_common_machine_options(m);
m->hot_add_cpu = pc_hot_add_cpu;
m->max_cpus = 255;
}