[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 09/16] pseries: Use SET_MACHINE_COMPAT
From: |
David Gibson |
Subject: |
[Qemu-devel] [PULL 09/16] pseries: Use SET_MACHINE_COMPAT |
Date: |
Mon, 11 Jan 2016 15:37:31 +1100 |
To make the spapr_machine_*_class_init() functions a little less bulky.
Signed-off-by: David Gibson <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
Reviewed-by: Alexey Kardashevskiy <address@hidden>
---
hw/ppc/spapr.c | 24 ++++--------------------
1 file changed, 4 insertions(+), 20 deletions(-)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index b08d338..3078e60 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 = {
--
2.5.0
- [Qemu-devel] [PULL 00/16] ppc-for-2.6 queue 20160111, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 04/16] pseries: Remove redundant setting of mc->name for pseries-2.5 machine, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 01/16] hw/ppc/spapr_rtc: Remove bad class_size value, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 08/16] Move SET_MACHINE_COMPAT macro to boards.h, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 14/16] hw/ppc/spapr: Use XHCI as host controller for new spapr machines, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 11/16] pseries: Restructure class_options functions, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 16/16] hw/ppc/spapr: fix spapr->kvm_type leak, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 10/16] pseries: DEFINE_SPAPR_MACHINE, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 05/16] pseries: Rearrange versioned machine type code, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 09/16] pseries: Use SET_MACHINE_COMPAT,
David Gibson <=
- [Qemu-devel] [PULL 03/16] spapr: Add /system-id, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 12/16] pseries: Improve setting of default machine version, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 13/16] pseries: Add pseries-2.6 machine type, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 02/16] target-ppc: Define kvmppc_read_int_dt(), David Gibson, 2016/01/10
- [Qemu-devel] [PULL 07/16] pseries: Remove versions from mc->desc, David Gibson, 2016/01/10
- [Qemu-devel] [PULL 06/16] pseries: Remove redundant calls to spapr_machine_initfn(), David Gibson, 2016/01/10
- [Qemu-devel] [PULL 15/16] spapr vio: fix to incomplete QOMify, David Gibson, 2016/01/10
- Re: [Qemu-devel] [PULL 00/16] ppc-for-2.6 queue 20160111, Peter Maydell, 2016/01/11