From: Andreas Färber Date: Sat, 27 Jul 2013 14:40:42 +0000 (+0200) Subject: sysbus: QOM parent field cleanup for SysBusDevice X-Git-Tag: qemu-xen-4.4.0-rc1~6^2~95^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b67964d70219a864ec427e727754a205475c7d6c;p=qemu-xen.git sysbus: QOM parent field cleanup for SysBusDevice Rename the parent field and hide it from gtk-doc. Signed-off-by: Andreas Färber --- diff --git a/include/hw/sysbus.h b/include/hw/sysbus.h index f1d1c5ede6..bb50a877cc 100644 --- a/include/hw/sysbus.h +++ b/include/hw/sysbus.h @@ -42,7 +42,10 @@ typedef struct SysBusDeviceClass { } SysBusDeviceClass; struct SysBusDevice { - DeviceState qdev; + /*< private >*/ + DeviceState parent_obj; + /*< public >*/ + int num_irq; qemu_irq irqs[QDEV_MAX_IRQ]; qemu_irq *irqp[QDEV_MAX_IRQ];