Skip to content

Commit

Permalink
sysbus: QOM parent field cleanup for SysBusDevice
Browse files Browse the repository at this point in the history
Rename the parent field and hide it from gtk-doc.

Signed-off-by: Andreas Färber <[email protected]>
  • Loading branch information
afaerber committed Jul 29, 2013
1 parent 38fb090 commit b67964d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/hw/sysbus.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit b67964d

Please sign in to comment.