aboutsummaryrefslogtreecommitdiff
path: root/hw/ppc
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2015-12-03 17:47:22 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2016-01-11 15:29:05 +1100
commitf949b4e5f5f8ce51d89d22567741c27fdcb0c106 (patch)
tree743519d914677cb5b59140ec42bab8e399a7d31b /hw/ppc
parent877f8931b99e2377a180fd43a1e5fc2b707e9c52 (diff)
pseries: Use SET_MACHINE_COMPAT
To make the spapr_machine_*_class_init() functions a little less bulky. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'hw/ppc')
-rw-r--r--hw/ppc/spapr.c24
1 files changed, 4 insertions, 20 deletions
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index b08d338954..3078e6063c 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -2329,13 +2329,9 @@ static const TypeInfo spapr_machine_2_5_info = {
static void spapr_machine_2_4_class_init(ObjectClass *oc, void *data)
{
- static GlobalProperty compat_props[] = {
- SPAPR_COMPAT_2_4
- { /* end of list */ }
- };
MachineClass *mc = MACHINE_CLASS(oc);
- mc->compat_props = compat_props;
+ SET_MACHINE_COMPAT(mc, SPAPR_COMPAT_2_4);
}
static const TypeInfo spapr_machine_2_4_info = {
@@ -2369,13 +2365,9 @@ static void spapr_machine_2_3_instance_init(Object *obj)
static void spapr_machine_2_3_class_init(ObjectClass *oc, void *data)
{
- static GlobalProperty compat_props[] = {
- SPAPR_COMPAT_2_3
- { /* end of list */ }
- };
MachineClass *mc = MACHINE_CLASS(oc);
- mc->compat_props = compat_props;
+ SET_MACHINE_COMPAT(mc, SPAPR_COMPAT_2_3);
}
static const TypeInfo spapr_machine_2_3_info = {
@@ -2410,13 +2402,9 @@ static void spapr_machine_2_2_instance_init(Object *obj)
static void spapr_machine_2_2_class_init(ObjectClass *oc, void *data)
{
- static GlobalProperty compat_props[] = {
- SPAPR_COMPAT_2_2
- { /* end of list */ }
- };
MachineClass *mc = MACHINE_CLASS(oc);
- mc->compat_props = compat_props;
+ SET_MACHINE_COMPAT(mc, SPAPR_COMPAT_2_2);
}
static const TypeInfo spapr_machine_2_2_info = {
@@ -2446,12 +2434,8 @@ static void spapr_machine_2_1_instance_init(Object *obj)
static void spapr_machine_2_1_class_init(ObjectClass *oc, void *data)
{
MachineClass *mc = MACHINE_CLASS(oc);
- static GlobalProperty compat_props[] = {
- SPAPR_COMPAT_2_1
- { /* end of list */ }
- };
- mc->compat_props = compat_props;
+ SET_MACHINE_COMPAT(mc, SPAPR_COMPAT_2_1);
}
static const TypeInfo spapr_machine_2_1_info = {